|
2886
|
115
|
6
|
2026-05-07T11:46:56.853243+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-07/1778 /Users/lukas/.screenpipe/data/data/2026-05-07/1778154416853_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/jiminny/app/vendor/hubspot/api-clien faVsco.js – ~/jiminny/app/vendor/hubspot/api-client/codegen/Crm/Deals/Api/BasicApi.php...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
master, menu
Start Listen Project: faVsco.js, menu
master, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
Editor for custom.log
Code changed:
Hide
Sync Changes
Hide This Notification
Reader Mode
Analyzing…
<?php
/**
* BasicApi
* PHP version 7.3
*
* @category Class
* @package HubSpot\Client\Crm\Deals
* @author OpenAPI Generator team
* @link [URL_WITH_CREDENTIALS] Class
* @package HubSpot\Client\Crm\Deals
* @author OpenAPI Generator team
* @link [URL_WITH_CREDENTIALS] int $hostIndex Host index (required)
*/
public function setHostIndex($hostIndex): void
{
$this->hostIndex = $hostIndex;
}
/**
* Get the host index
*
* @return int Host index
*/
public function getHostIndex()
{
return $this->hostIndex;
}
/**
* @return Configuration
*/
public function getConfig()
{
return $this->config;
}
/**
* Operation archive
*
* Archive
*
* @param string $deal_id deal_id (required)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return void
*/
public function archive($deal_id)
{
$this->archiveWithHttpInfo($deal_id);
}
/**
* Operation archiveWithHttpInfo
*
* Archive
*
* @param string $deal_id (required)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return array of null, HTTP status code, HTTP response headers (array of strings)
*/
public function archiveWithHttpInfo($deal_id)
{
$request = $this->archiveRequest($deal_id);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
return [null, $statusCode, $response->getHeaders()];
} catch (ApiException $e) {
switch ($e->getCode()) {
default:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\Error',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
}
throw $e;
}
}
/**
* Operation archiveAsync
*
* Archive
*
* @param string $deal_id (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function archiveAsync($deal_id)
{
return $this->archiveAsyncWithHttpInfo($deal_id)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation archiveAsyncWithHttpInfo
*
* Archive
*
* @param string $deal_id (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function archiveAsyncWithHttpInfo($deal_id)
{
$returnType = '';
$request = $this->archiveRequest($deal_id);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
return [null, $response->getStatusCode(), $response->getHeaders()];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'archive'
*
* @param string $deal_id (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function archiveRequest($deal_id)
{
// verify the required parameter 'deal_id' is set
if ($deal_id === null || (is_array($deal_id) && count($deal_id) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $deal_id when calling archive'
);
}
$resourcePath = '/crm/v3/objects/deals/{dealId}';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// path params
if ($deal_id !== null) {
$resourcePath = str_replace(
'{' . 'dealId' . '}',
ObjectSerializer::toPathValue($deal_id),
$resourcePath
);
}
if ($multipart) {
$headers = $this->headerSelector->selectHeadersForMultipart(
['*/*']
);
} else {
$headers = $this->headerSelector->selectHeaders(
['*/*'],
[]
);
}
// for model (json/xml)
if (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif ($headers['Content-Type'] === 'application/json') {
$httpBody = \GuzzleHttp\json_encode($formParams);
} else {
// for HTTP post (form)
$httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
}
}
// this endpoint requires API key authentication
$apiKey = $this->config->getApiKeyWithPrefix('hapikey');
if ($apiKey !== null) {
$queryParams['hapikey'] = $apiKey;
}
// this endpoint requires OAuth (access token)
if ($this->config->getAccessToken() !== null) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$query = \GuzzleHttp\Psr7\Query::build($queryParams);
return new Request(
'DELETE',
$this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation create
*
* Create
*
* @param \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectInput $simple_public_object_input simple_public_object_input (required)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return \HubSpot\Client\Crm\Deals\Model\SimplePublicObject|\HubSpot\Client\Crm\Deals\Model\Error
*/
public function create($simple_public_object_input)
{
list($response) = $this->createWithHttpInfo($simple_public_object_input);
return $response;
}
/**
* Operation createWithHttpInfo
*
* Create
*
* @param \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectInput $simple_public_object_input (required)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return array of \HubSpot\Client\Crm\Deals\Model\SimplePublicObject|\HubSpot\Client\Crm\Deals\Model\Error, HTTP status code, HTTP response headers (array of strings)
*/
public function createWithHttpInfo($simple_public_object_input)
{
$request = $this->createRequest($simple_public_object_input);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
switch($statusCode) {
case 201:
if ('\HubSpot\Client\Crm\Deals\Model\SimplePublicObject' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\SimplePublicObject', []),
$response->getStatusCode(),
$response->getHeaders()
];
default:
if ('\HubSpot\Client\Crm\Deals\Model\Error' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\Error', []),
$response->getStatusCode(),
$response->getHeaders()
];
}
$returnType = '\HubSpot\Client\Crm\Deals\Model\SimplePublicObject';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
} catch (ApiException $e) {
switch ($e->getCode()) {
case 201:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\SimplePublicObject',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
default:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\Error',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
}
throw $e;
}
}
/**
* Operation createAsync
*
* Create
*
* @param \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectInput $simple_public_object_input (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function createAsync($simple_public_object_input)
{
return $this->createAsyncWithHttpInfo($simple_public_object_input)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation createAsyncWithHttpInfo
*
* Create
*
* @param \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectInput $simple_public_object_input (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function createAsyncWithHttpInfo($simple_public_object_input)
{
$returnType = '\HubSpot\Client\Crm\Deals\Model\SimplePublicObject';
$request = $this->createRequest($simple_public_object_input);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'create'
*
* @param \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectInput $simple_public_object_input (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function createRequest($simple_public_object_input)
{
// verify the required parameter 'simple_public_object_input' is set
if ($simple_public_object_input === null || (is_array($simple_public_object_input) && count($simple_public_object_input) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $simple_public_object_input when calling create'
);
}
$resourcePath = '/crm/v3/objects/deals';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
if ($multipart) {
$headers = $this->headerSelector->selectHeadersForMultipart(
['application/json', '*/*']
);
} else {
$headers = $this->headerSelector->selectHeaders(
['application/json', '*/*'],
['application/json']
);
}
// for model (json/xml)
if (isset($simple_public_object_input)) {
if ($headers['Content-Type'] === 'application/json') {
$httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($simple_public_object_input));
} else {
$httpBody = $simple_public_object_input;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif ($headers['Content-Type'] === 'application/json') {
$httpBody = \GuzzleHttp\json_encode($formParams);
} else {
// for HTTP post (form)
$httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
}
}
// this endpoint requires API key authentication
$apiKey = $this->config->getApiKeyWithPrefix('hapikey');
if ($apiKey !== null) {
$queryParams['hapikey'] = $apiKey;
}
// this endpoint requires OAuth (access token)
if ($this->config->getAccessToken() !== null) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$query = \GuzzleHttp\Psr7\Query::build($queryParams);
return new Request(
'POST',
$this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation getById
*
* Read
*
* @param string $deal_id deal_id (required)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
* @param string $id_property The name of a property whose values are unique for this object type (optional)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations|\HubSpot\Client\Crm\Deals\Model\Error
*/
public function getById($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)
{
list($response) = $this->getByIdWithHttpInfo($deal_id, $properties, $associations, $archived, $id_property);
return $response;
}
/**
* Operation getByIdWithHttpInfo
*
* Read
*
* @param string $deal_id (required)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
* @param string $id_property The name of a property whose values are unique for this object type (optional)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return array of \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations|\HubSpot\Client\Crm\Deals\Model\Error, HTTP status code, HTTP response headers (array of strings)
*/
public function getByIdWithHttpInfo($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)
{
$request = $this->getByIdRequest($deal_id, $properties, $associations, $archived, $id_property);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
switch($statusCode) {
case 200:
if ('\HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations', []),
$response->getStatusCode(),
$response->getHeaders()
];
default:
if ('\HubSpot\Client\Crm\Deals\Model\Error' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\Error', []),
$response->getStatusCode(),
$response->getHeaders()
];
}
$returnType = '\HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
} catch (ApiException $e) {
switch ($e->getCode()) {
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
default:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\Error',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
}
throw $e;
}
}
/**
* Operation getByIdAsync
*
* Read
*
* @param string $deal_id (required)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
* @param string $id_property The name of a property whose values are unique for this object type (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getByIdAsync($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)
{
return $this->getByIdAsyncWithHttpInfo($deal_id, $properties, $associations, $archived, $id_property)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation getByIdAsyncWithHttpInfo
*
* Read
*
* @param string $deal_id (required)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
* @param string $id_property The name of a property whose values are unique for this object type (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getByIdAsyncWithHttpInfo($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)
{
$returnType = '\HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations';
$request = $this->getByIdRequest($deal_id, $properties, $associations, $archived, $id_property);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'getById'
*
* @param string $deal_id (required)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
* @param string $id_property The name of a property whose values are unique for this object type (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function getByIdRequest($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)
{
// verify the required parameter 'deal_id' is set
if ($deal_id === null || (is_array($deal_id) && count($deal_id) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $deal_id when calling getById'
);
}
$resourcePath = '/crm/v3/objects/deals/{dealId}';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// query params
if ($properties !== null) {
if('form' === 'form' && is_array($properties)) {
foreach($properties as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
$queryParams['properties'] = $properties;
}
}
// query params
if ($associations !== null) {
if('form' === 'form' && is_array($associations)) {
foreach($associations as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
$queryParams['associations'] = $associations;
}
}
// query params
if ($archived !== null) {
if('form' === 'form' && is_array($archived)) {
foreach($archived as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
$queryParams['archived'] = $archived;
}
}
// query params
if ($id_property !== null) {
if('form' === 'form' && is_array($id_property)) {
foreach($id_property as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
$queryParams['idProperty'] = $id_property;
}
}
// path params
if ($deal_id !== null) {
$resourcePath = str_replace(
'{' . 'dealId' . '}',
ObjectSerializer::toPathValue($deal_id),
$resourcePath
);
}
if ($multipart) {
$headers = $this->headerSelector->selectHeadersForMultipart(
['application/json', '*/*']
);
} else {
$headers = $this->headerSelector->selectHeaders(
['application/json', '*/*'],
[]
);
}
// for model (json/xml)
if (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif ($headers['Content-Type'] === 'application/json') {
$httpBody = \GuzzleHttp\json_encode($formParams);
} else {
// for HTTP post (form)
$httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
}
}
// this endpoint requires API key authentication
$apiKey = $this->config->getApiKeyWithPrefix('hapikey');
if ($apiKey !== null) {
$queryParams['hapikey'] = $apiKey;
}
// this endpoint requires OAuth (access token)
if ($this->config->getAccessToken() !== null) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$query = \GuzzleHttp\Psr7\Query::build($queryParams);
return new Request(
'GET',
$this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation getPage
*
* List
*
* @param int $limit The maximum number of results to display per page. (optional, default to 10)
* @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return \HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging|\HubSpot\Client\Crm\Deals\Model\Error
*/
public function getPage($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)
{
list($response) = $this->getPageWithHttpInfo($limit, $after, $properties, $associations, $archived);
return $response;
}
/**
* Operation getPageWithHttpInfo
*
* List
*
* @param int $limit The maximum number of results to display per page. (optional, default to 10)
* @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return array of \HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging|\HubSpot\Client\Crm\Deals\Model\Error, HTTP status code, HTTP response headers (array of strings)
*/
public function getPageWithHttpInfo($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)
{
$request = $this->getPageRequest($limit, $after, $properties, $associations, $archived);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
switch($statusCode) {
case 200:
if ('\HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging', []),
$response->getStatusCode(),
$response->getHeaders()
];
default:
if ('\HubSpot\Client\Crm\Deals\Model\Error' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\Error', []),
$response->getStatusCode(),
$response->getHeaders()
];
}
$returnType = '\HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
} catch (ApiException $e) {
switch ($e->getCode()) {
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
default:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\Error',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
}
throw $e;
}
}
/**
* Operation getPageAsync
*
* List
*
* @param int $limit The maximum number of results to display per page. (optional, default to 10)
* @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getPageAsync($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)
{
return $this->getPageAsyncWithHttpInfo($limit, $after, $properties, $associations, $archived)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation getPageAsyncWithHttpInfo
*
* List
*
* @param int $limit The maximum number of results to display per page. (optional, default to 10)
* @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getPageAsyncWithHttpInfo($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)
{
$returnType = '\HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging';
$request = $this->getPageRequest($limit, $after, $properties, $associations, $archived);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'getPage'
*
* @param int $limit The maximum number of results to display per page. (optional, default to 10)
* @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function getPageRequest($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)
{
$res...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"master, menu","depth":5,"on_screen":true,"help_text":"Git Branch: master","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Editor for custom.log","depth":4,"on_screen":true,"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Reader Mode","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Analyzing…","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXTextArea","text":"<?php\n/**\n * BasicApi\n * PHP version 7.3\n *\n * @category Class\n * @package HubSpot\\Client\\Crm\\Deals\n * @author OpenAPI Generator team\n * @link https://openapi-generator.tech\n */\n\n/**\n * Deals\n *\n * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\n *\n * The version of the OpenAPI document: v3\n * Generated by: https://openapi-generator.tech\n * OpenAPI Generator version: 5.3.0\n */\n\n/**\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nnamespace HubSpot\\Client\\Crm\\Deals\\Api;\n\nuse GuzzleHttp\\Client;\nuse GuzzleHttp\\ClientInterface;\nuse GuzzleHttp\\Exception\\RequestException;\nuse GuzzleHttp\\Exception\\ConnectException;\nuse GuzzleHttp\\Psr7\\MultipartStream;\nuse GuzzleHttp\\Psr7\\Request;\nuse GuzzleHttp\\RequestOptions;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Configuration;\nuse HubSpot\\Client\\Crm\\Deals\\HeaderSelector;\nuse HubSpot\\Client\\Crm\\Deals\\ObjectSerializer;\n\n/**\n * BasicApi Class Doc Comment\n *\n * @category Class\n * @package HubSpot\\Client\\Crm\\Deals\n * @author OpenAPI Generator team\n * @link https://openapi-generator.tech\n */\nclass BasicApi\n{\n /**\n * @var ClientInterface\n */\n protected $client;\n\n /**\n * @var Configuration\n */\n protected $config;\n\n /**\n * @var HeaderSelector\n */\n protected $headerSelector;\n\n /**\n * @var int Host index\n */\n protected $hostIndex;\n\n /**\n * @param ClientInterface $client\n * @param Configuration $config\n * @param HeaderSelector $selector\n * @param int $hostIndex (Optional) host index to select the list of hosts if defined in the OpenAPI spec\n */\n public function __construct(\n ClientInterface $client = null,\n Configuration $config = null,\n HeaderSelector $selector = null,\n $hostIndex = 0\n ) {\n $this->client = $client ?: new Client();\n $this->config = $config ?: new Configuration();\n $this->headerSelector = $selector ?: new HeaderSelector();\n $this->hostIndex = $hostIndex;\n }\n\n /**\n * Set the host index\n *\n * @param int $hostIndex Host index (required)\n */\n public function setHostIndex($hostIndex): void\n {\n $this->hostIndex = $hostIndex;\n }\n\n /**\n * Get the host index\n *\n * @return int Host index\n */\n public function getHostIndex()\n {\n return $this->hostIndex;\n }\n\n /**\n * @return Configuration\n */\n public function getConfig()\n {\n return $this->config;\n }\n\n /**\n * Operation archive\n *\n * Archive\n *\n * @param string $deal_id deal_id (required)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return void\n */\n public function archive($deal_id)\n {\n $this->archiveWithHttpInfo($deal_id);\n }\n\n /**\n * Operation archiveWithHttpInfo\n *\n * Archive\n *\n * @param string $deal_id (required)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return array of null, HTTP status code, HTTP response headers (array of strings)\n */\n public function archiveWithHttpInfo($deal_id)\n {\n $request = $this->archiveRequest($deal_id);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? (string) $e->getResponse()->getBody() : null\n );\n } catch (ConnectException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n null,\n null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n (string) $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n\n return [null, $statusCode, $response->getHeaders()];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n default:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }\n\n /**\n * Operation archiveAsync\n *\n * Archive\n *\n * @param string $deal_id (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function archiveAsync($deal_id)\n {\n return $this->archiveAsyncWithHttpInfo($deal_id)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }\n\n /**\n * Operation archiveAsyncWithHttpInfo\n *\n * Archive\n *\n * @param string $deal_id (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function archiveAsyncWithHttpInfo($deal_id)\n {\n $returnType = '';\n $request = $this->archiveRequest($deal_id);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n return [null, $response->getStatusCode(), $response->getHeaders()];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n );\n }\n\n /**\n * Create request for operation 'archive'\n *\n * @param string $deal_id (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Psr7\\Request\n */\n public function archiveRequest($deal_id)\n {\n // verify the required parameter 'deal_id' is set\n if ($deal_id === null || (is_array($deal_id) && count($deal_id) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $deal_id when calling archive'\n );\n }\n\n $resourcePath = '/crm/v3/objects/deals/{dealId}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n\n // path params\n if ($deal_id !== null) {\n $resourcePath = str_replace(\n '{' . 'dealId' . '}',\n ObjectSerializer::toPathValue($deal_id),\n $resourcePath\n );\n }\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['*/*']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['*/*'],\n []\n );\n }\n\n // for model (json/xml)\n if (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('hapikey');\n if ($apiKey !== null) {\n $queryParams['hapikey'] = $apiKey;\n }\n // this endpoint requires OAuth (access token)\n if ($this->config->getAccessToken() !== null) {\n $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'DELETE',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }\n\n /**\n * Operation create\n *\n * Create\n *\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input simple_public_object_input (required)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error\n */\n public function create($simple_public_object_input)\n {\n list($response) = $this->createWithHttpInfo($simple_public_object_input);\n return $response;\n }\n\n /**\n * Operation createWithHttpInfo\n *\n * Create\n *\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return array of \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error, HTTP status code, HTTP response headers (array of strings)\n */\n public function createWithHttpInfo($simple_public_object_input)\n {\n $request = $this->createRequest($simple_public_object_input);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? (string) $e->getResponse()->getBody() : null\n );\n } catch (ConnectException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n null,\n null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n (string) $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n\n switch($statusCode) {\n case 201:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n default:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\Error' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n }\n\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject';\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n case 201:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n default:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }\n\n /**\n * Operation createAsync\n *\n * Create\n *\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function createAsync($simple_public_object_input)\n {\n return $this->createAsyncWithHttpInfo($simple_public_object_input)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }\n\n /**\n * Operation createAsyncWithHttpInfo\n *\n * Create\n *\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function createAsyncWithHttpInfo($simple_public_object_input)\n {\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject';\n $request = $this->createRequest($simple_public_object_input);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n );\n }\n\n /**\n * Create request for operation 'create'\n *\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Psr7\\Request\n */\n public function createRequest($simple_public_object_input)\n {\n // verify the required parameter 'simple_public_object_input' is set\n if ($simple_public_object_input === null || (is_array($simple_public_object_input) && count($simple_public_object_input) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $simple_public_object_input when calling create'\n );\n }\n\n $resourcePath = '/crm/v3/objects/deals';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json', '*/*']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json', '*/*'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($simple_public_object_input)) {\n if ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode(ObjectSerializer::sanitizeForSerialization($simple_public_object_input));\n } else {\n $httpBody = $simple_public_object_input;\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('hapikey');\n if ($apiKey !== null) {\n $queryParams['hapikey'] = $apiKey;\n }\n // this endpoint requires OAuth (access token)\n if ($this->config->getAccessToken() !== null) {\n $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'POST',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }\n\n /**\n * Operation getById\n *\n * Read\n *\n * @param string $deal_id deal_id (required)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error\n */\n public function getById($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)\n {\n list($response) = $this->getByIdWithHttpInfo($deal_id, $properties, $associations, $archived, $id_property);\n return $response;\n }\n\n /**\n * Operation getByIdWithHttpInfo\n *\n * Read\n *\n * @param string $deal_id (required)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return array of \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error, HTTP status code, HTTP response headers (array of strings)\n */\n public function getByIdWithHttpInfo($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)\n {\n $request = $this->getByIdRequest($deal_id, $properties, $associations, $archived, $id_property);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? (string) $e->getResponse()->getBody() : null\n );\n } catch (ConnectException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n null,\n null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n (string) $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n\n switch($statusCode) {\n case 200:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n default:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\Error' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n }\n\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations';\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n case 200:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n default:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }\n\n /**\n * Operation getByIdAsync\n *\n * Read\n *\n * @param string $deal_id (required)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function getByIdAsync($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)\n {\n return $this->getByIdAsyncWithHttpInfo($deal_id, $properties, $associations, $archived, $id_property)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }\n\n /**\n * Operation getByIdAsyncWithHttpInfo\n *\n * Read\n *\n * @param string $deal_id (required)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function getByIdAsyncWithHttpInfo($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)\n {\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations';\n $request = $this->getByIdRequest($deal_id, $properties, $associations, $archived, $id_property);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n );\n }\n\n /**\n * Create request for operation 'getById'\n *\n * @param string $deal_id (required)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Psr7\\Request\n */\n public function getByIdRequest($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)\n {\n // verify the required parameter 'deal_id' is set\n if ($deal_id === null || (is_array($deal_id) && count($deal_id) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $deal_id when calling getById'\n );\n }\n\n $resourcePath = '/crm/v3/objects/deals/{dealId}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n // query params\n if ($properties !== null) {\n if('form' === 'form' && is_array($properties)) {\n foreach($properties as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['properties'] = $properties;\n }\n }\n // query params\n if ($associations !== null) {\n if('form' === 'form' && is_array($associations)) {\n foreach($associations as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['associations'] = $associations;\n }\n }\n // query params\n if ($archived !== null) {\n if('form' === 'form' && is_array($archived)) {\n foreach($archived as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['archived'] = $archived;\n }\n }\n // query params\n if ($id_property !== null) {\n if('form' === 'form' && is_array($id_property)) {\n foreach($id_property as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['idProperty'] = $id_property;\n }\n }\n\n\n // path params\n if ($deal_id !== null) {\n $resourcePath = str_replace(\n '{' . 'dealId' . '}',\n ObjectSerializer::toPathValue($deal_id),\n $resourcePath\n );\n }\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json', '*/*']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json', '*/*'],\n []\n );\n }\n\n // for model (json/xml)\n if (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('hapikey');\n if ($apiKey !== null) {\n $queryParams['hapikey'] = $apiKey;\n }\n // this endpoint requires OAuth (access token)\n if ($this->config->getAccessToken() !== null) {\n $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'GET',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }\n\n /**\n * Operation getPage\n *\n * List\n *\n * @param int $limit The maximum number of results to display per page. (optional, default to 10)\n * @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return \\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error\n */\n public function getPage($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)\n {\n list($response) = $this->getPageWithHttpInfo($limit, $after, $properties, $associations, $archived);\n return $response;\n }\n\n /**\n * Operation getPageWithHttpInfo\n *\n * List\n *\n * @param int $limit The maximum number of results to display per page. (optional, default to 10)\n * @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return array of \\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error, HTTP status code, HTTP response headers (array of strings)\n */\n public function getPageWithHttpInfo($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)\n {\n $request = $this->getPageRequest($limit, $after, $properties, $associations, $archived);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? (string) $e->getResponse()->getBody() : null\n );\n } catch (ConnectException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n null,\n null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n (string) $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n\n switch($statusCode) {\n case 200:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n default:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\Error' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n }\n\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging';\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n case 200:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n default:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }\n\n /**\n * Operation getPageAsync\n *\n * List\n *\n * @param int $limit The maximum number of results to display per page. (optional, default to 10)\n * @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function getPageAsync($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)\n {\n return $this->getPageAsyncWithHttpInfo($limit, $after, $properties, $associations, $archived)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }\n\n /**\n * Operation getPageAsyncWithHttpInfo\n *\n * List\n *\n * @param int $limit The maximum number of results to display per page. (optional, default to 10)\n * @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function getPageAsyncWithHttpInfo($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)\n {\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging';\n $request = $this->getPageRequest($limit, $after, $properties, $associations, $archived);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n );\n }\n\n /**\n * Create request for operation 'getPage'\n *\n * @param int $limit The maximum number of results to display per page. (optional, default to 10)\n * @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Psr7\\Request\n */\n public function getPageRequest($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)\n {\n\n $resourcePath = '/crm/v3/objects/deals';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n // query params\n if ($limit !== null) {\n if('form' === 'form' && is_array($limit)) {\n foreach($limit as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['limit'] = $limit;\n }\n }\n // query params\n if ($after !== null) {\n if('form' === 'form' && is_array($after)) {\n foreach($after as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['after'] = $after;\n }\n }\n // query params\n if ($properties !== null) {\n if('form' === 'form' && is_array($properties)) {\n foreach($properties as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['properties'] = $properties;\n }\n }\n // query params\n if ($associations !== null) {\n if('form' === 'form' && is_array($associations)) {\n foreach($associations as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['associations'] = $associations;\n }\n }\n // query params\n if ($archived !== null) {\n if('form' === 'form' && is_array($archived)) {\n foreach($archived as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['archived'] = $archived;\n }\n }\n\n\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json', '*/*']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json', '*/*'],\n []\n );\n }\n\n // for model (json/xml)\n if (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('hapikey');\n if ($apiKey !== null) {\n $queryParams['hapikey'] = $apiKey;\n }\n // this endpoint requires OAuth (access token)\n if ($this->config->getAccessToken() !== null) {\n $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'GET',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }\n\n /**\n * Operation update\n *\n * Update\n *\n * @param string $deal_id deal_id (required)\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input simple_public_object_input (required)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error\n */\n public function update($deal_id, $simple_public_object_input, $id_property = null)\n {\n list($response) = $this->updateWithHttpInfo($deal_id, $simple_public_object_input, $id_property);\n return $response;\n }\n\n /**\n * Operation updateWithHttpInfo\n *\n * Update\n *\n * @param string $deal_id (required)\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return array of \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error, HTTP status code, HTTP response headers (array of strings)\n */\n public function updateWithHttpInfo($deal_id, $simple_public_object_input, $id_property = null)\n {\n $request = $this->updateRequest($deal_id, $simple_public_object_input, $id_property);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? (string) $e->getResponse()->getBody() : null\n );\n } catch (ConnectException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n null,\n null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n (string) $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n\n switch($statusCode) {\n case 200:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n default:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\Error' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n }\n\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject';\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n case 200:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n default:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }\n\n /**\n * Operation updateAsync\n *\n * Update\n *\n * @param string $deal_id (required)\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function updateAsync($deal_id, $simple_public_object_input, $id_property = null)\n {\n return $this->updateAsyncWithHttpInfo($deal_id, $simple_public_object_input, $id_property)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }\n\n /**\n * Operation updateAsyncWithHttpInfo\n *\n * Update\n *\n * @param string $deal_id (required)\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function updateAsyncWithHttpInfo($deal_id, $simple_public_object_input, $id_property = null)\n {\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject';\n $request = $this->updateRequest($deal_id, $simple_public_object_input, $id_property);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n );\n }\n\n /**\n * Create request for operation 'update'\n *\n * @param string $deal_id (required)\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Psr7\\Request\n */\n public function updateRequest($deal_id, $simple_public_object_input, $id_property = null)\n {\n // verify the required parameter 'deal_id' is set\n if ($deal_id === null || (is_array($deal_id) && count($deal_id) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $deal_id when calling update'\n );\n }\n // verify the required parameter 'simple_public_object_input' is set\n if ($simple_public_object_input === null || (is_array($simple_public_object_input) && count($simple_public_object_input) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $simple_public_object_input when calling update'\n );\n }\n\n $resourcePath = '/crm/v3/objects/deals/{dealId}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n // query params\n if ($id_property !== null) {\n if('form' === 'form' && is_array($id_property)) {\n foreach($id_property as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['idProperty'] = $id_property;\n }\n }\n\n\n // path params\n if ($deal_id !== null) {\n $resourcePath = str_replace(\n '{' . 'dealId' . '}',\n ObjectSerializer::toPathValue($deal_id),\n $resourcePath\n );\n }\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json', '*/*']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json', '*/*'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($simple_public_object_input)) {\n if ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode(ObjectSerializer::sanitizeForSerialization($simple_public_object_input));\n } else {\n $httpBody = $simple_public_object_input;\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('hapikey');\n if ($apiKey !== null) {\n $queryParams['hapikey'] = $apiKey;\n }\n // this endpoint requires OAuth (access token)\n if ($this->config->getAccessToken() !== null) {\n $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'PATCH',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }\n\n /**\n * Create http client option\n *\n * @throws \\RuntimeException on file opening failure\n * @return array of http client options\n */\n protected function createHttpClientOption()\n {\n $options = [];\n if ($this->config->getDebug()) {\n $options[RequestOptions::DEBUG] = fopen($this->config->getDebugFile(), 'a');\n if (!$options[RequestOptions::DEBUG]) {\n throw new \\RuntimeException('Failed to open the debug file: ' . $this->config->getDebugFile());\n }\n }\n\n return $options;\n }\n}","depth":4,"on_screen":true,"value":"<?php\n/**\n * BasicApi\n * PHP version 7.3\n *\n * @category Class\n * @package HubSpot\\Client\\Crm\\Deals\n * @author OpenAPI Generator team\n * @link https://openapi-generator.tech\n */\n\n/**\n * Deals\n *\n * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\n *\n * The version of the OpenAPI document: v3\n * Generated by: https://openapi-generator.tech\n * OpenAPI Generator version: 5.3.0\n */\n\n/**\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nnamespace HubSpot\\Client\\Crm\\Deals\\Api;\n\nuse GuzzleHttp\\Client;\nuse GuzzleHttp\\ClientInterface;\nuse GuzzleHttp\\Exception\\RequestException;\nuse GuzzleHttp\\Exception\\ConnectException;\nuse GuzzleHttp\\Psr7\\MultipartStream;\nuse GuzzleHttp\\Psr7\\Request;\nuse GuzzleHttp\\RequestOptions;\nuse HubSpot\\Client\\Crm\\Deals\\ApiException;\nuse HubSpot\\Client\\Crm\\Deals\\Configuration;\nuse HubSpot\\Client\\Crm\\Deals\\HeaderSelector;\nuse HubSpot\\Client\\Crm\\Deals\\ObjectSerializer;\n\n/**\n * BasicApi Class Doc Comment\n *\n * @category Class\n * @package HubSpot\\Client\\Crm\\Deals\n * @author OpenAPI Generator team\n * @link https://openapi-generator.tech\n */\nclass BasicApi\n{\n /**\n * @var ClientInterface\n */\n protected $client;\n\n /**\n * @var Configuration\n */\n protected $config;\n\n /**\n * @var HeaderSelector\n */\n protected $headerSelector;\n\n /**\n * @var int Host index\n */\n protected $hostIndex;\n\n /**\n * @param ClientInterface $client\n * @param Configuration $config\n * @param HeaderSelector $selector\n * @param int $hostIndex (Optional) host index to select the list of hosts if defined in the OpenAPI spec\n */\n public function __construct(\n ClientInterface $client = null,\n Configuration $config = null,\n HeaderSelector $selector = null,\n $hostIndex = 0\n ) {\n $this->client = $client ?: new Client();\n $this->config = $config ?: new Configuration();\n $this->headerSelector = $selector ?: new HeaderSelector();\n $this->hostIndex = $hostIndex;\n }\n\n /**\n * Set the host index\n *\n * @param int $hostIndex Host index (required)\n */\n public function setHostIndex($hostIndex): void\n {\n $this->hostIndex = $hostIndex;\n }\n\n /**\n * Get the host index\n *\n * @return int Host index\n */\n public function getHostIndex()\n {\n return $this->hostIndex;\n }\n\n /**\n * @return Configuration\n */\n public function getConfig()\n {\n return $this->config;\n }\n\n /**\n * Operation archive\n *\n * Archive\n *\n * @param string $deal_id deal_id (required)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return void\n */\n public function archive($deal_id)\n {\n $this->archiveWithHttpInfo($deal_id);\n }\n\n /**\n * Operation archiveWithHttpInfo\n *\n * Archive\n *\n * @param string $deal_id (required)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return array of null, HTTP status code, HTTP response headers (array of strings)\n */\n public function archiveWithHttpInfo($deal_id)\n {\n $request = $this->archiveRequest($deal_id);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? (string) $e->getResponse()->getBody() : null\n );\n } catch (ConnectException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n null,\n null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n (string) $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n\n return [null, $statusCode, $response->getHeaders()];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n default:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }\n\n /**\n * Operation archiveAsync\n *\n * Archive\n *\n * @param string $deal_id (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function archiveAsync($deal_id)\n {\n return $this->archiveAsyncWithHttpInfo($deal_id)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }\n\n /**\n * Operation archiveAsyncWithHttpInfo\n *\n * Archive\n *\n * @param string $deal_id (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function archiveAsyncWithHttpInfo($deal_id)\n {\n $returnType = '';\n $request = $this->archiveRequest($deal_id);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n return [null, $response->getStatusCode(), $response->getHeaders()];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n );\n }\n\n /**\n * Create request for operation 'archive'\n *\n * @param string $deal_id (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Psr7\\Request\n */\n public function archiveRequest($deal_id)\n {\n // verify the required parameter 'deal_id' is set\n if ($deal_id === null || (is_array($deal_id) && count($deal_id) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $deal_id when calling archive'\n );\n }\n\n $resourcePath = '/crm/v3/objects/deals/{dealId}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n\n // path params\n if ($deal_id !== null) {\n $resourcePath = str_replace(\n '{' . 'dealId' . '}',\n ObjectSerializer::toPathValue($deal_id),\n $resourcePath\n );\n }\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['*/*']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['*/*'],\n []\n );\n }\n\n // for model (json/xml)\n if (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('hapikey');\n if ($apiKey !== null) {\n $queryParams['hapikey'] = $apiKey;\n }\n // this endpoint requires OAuth (access token)\n if ($this->config->getAccessToken() !== null) {\n $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'DELETE',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }\n\n /**\n * Operation create\n *\n * Create\n *\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input simple_public_object_input (required)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error\n */\n public function create($simple_public_object_input)\n {\n list($response) = $this->createWithHttpInfo($simple_public_object_input);\n return $response;\n }\n\n /**\n * Operation createWithHttpInfo\n *\n * Create\n *\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return array of \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error, HTTP status code, HTTP response headers (array of strings)\n */\n public function createWithHttpInfo($simple_public_object_input)\n {\n $request = $this->createRequest($simple_public_object_input);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? (string) $e->getResponse()->getBody() : null\n );\n } catch (ConnectException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n null,\n null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n (string) $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n\n switch($statusCode) {\n case 201:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n default:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\Error' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n }\n\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject';\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n case 201:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n default:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }\n\n /**\n * Operation createAsync\n *\n * Create\n *\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function createAsync($simple_public_object_input)\n {\n return $this->createAsyncWithHttpInfo($simple_public_object_input)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }\n\n /**\n * Operation createAsyncWithHttpInfo\n *\n * Create\n *\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function createAsyncWithHttpInfo($simple_public_object_input)\n {\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject';\n $request = $this->createRequest($simple_public_object_input);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n );\n }\n\n /**\n * Create request for operation 'create'\n *\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Psr7\\Request\n */\n public function createRequest($simple_public_object_input)\n {\n // verify the required parameter 'simple_public_object_input' is set\n if ($simple_public_object_input === null || (is_array($simple_public_object_input) && count($simple_public_object_input) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $simple_public_object_input when calling create'\n );\n }\n\n $resourcePath = '/crm/v3/objects/deals';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json', '*/*']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json', '*/*'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($simple_public_object_input)) {\n if ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode(ObjectSerializer::sanitizeForSerialization($simple_public_object_input));\n } else {\n $httpBody = $simple_public_object_input;\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('hapikey');\n if ($apiKey !== null) {\n $queryParams['hapikey'] = $apiKey;\n }\n // this endpoint requires OAuth (access token)\n if ($this->config->getAccessToken() !== null) {\n $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'POST',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }\n\n /**\n * Operation getById\n *\n * Read\n *\n * @param string $deal_id deal_id (required)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error\n */\n public function getById($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)\n {\n list($response) = $this->getByIdWithHttpInfo($deal_id, $properties, $associations, $archived, $id_property);\n return $response;\n }\n\n /**\n * Operation getByIdWithHttpInfo\n *\n * Read\n *\n * @param string $deal_id (required)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return array of \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error, HTTP status code, HTTP response headers (array of strings)\n */\n public function getByIdWithHttpInfo($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)\n {\n $request = $this->getByIdRequest($deal_id, $properties, $associations, $archived, $id_property);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? (string) $e->getResponse()->getBody() : null\n );\n } catch (ConnectException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n null,\n null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n (string) $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n\n switch($statusCode) {\n case 200:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n default:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\Error' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n }\n\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations';\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n case 200:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n default:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }\n\n /**\n * Operation getByIdAsync\n *\n * Read\n *\n * @param string $deal_id (required)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function getByIdAsync($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)\n {\n return $this->getByIdAsyncWithHttpInfo($deal_id, $properties, $associations, $archived, $id_property)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }\n\n /**\n * Operation getByIdAsyncWithHttpInfo\n *\n * Read\n *\n * @param string $deal_id (required)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function getByIdAsyncWithHttpInfo($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)\n {\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectWithAssociations';\n $request = $this->getByIdRequest($deal_id, $properties, $associations, $archived, $id_property);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n );\n }\n\n /**\n * Create request for operation 'getById'\n *\n * @param string $deal_id (required)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Psr7\\Request\n */\n public function getByIdRequest($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)\n {\n // verify the required parameter 'deal_id' is set\n if ($deal_id === null || (is_array($deal_id) && count($deal_id) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $deal_id when calling getById'\n );\n }\n\n $resourcePath = '/crm/v3/objects/deals/{dealId}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n // query params\n if ($properties !== null) {\n if('form' === 'form' && is_array($properties)) {\n foreach($properties as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['properties'] = $properties;\n }\n }\n // query params\n if ($associations !== null) {\n if('form' === 'form' && is_array($associations)) {\n foreach($associations as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['associations'] = $associations;\n }\n }\n // query params\n if ($archived !== null) {\n if('form' === 'form' && is_array($archived)) {\n foreach($archived as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['archived'] = $archived;\n }\n }\n // query params\n if ($id_property !== null) {\n if('form' === 'form' && is_array($id_property)) {\n foreach($id_property as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['idProperty'] = $id_property;\n }\n }\n\n\n // path params\n if ($deal_id !== null) {\n $resourcePath = str_replace(\n '{' . 'dealId' . '}',\n ObjectSerializer::toPathValue($deal_id),\n $resourcePath\n );\n }\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json', '*/*']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json', '*/*'],\n []\n );\n }\n\n // for model (json/xml)\n if (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('hapikey');\n if ($apiKey !== null) {\n $queryParams['hapikey'] = $apiKey;\n }\n // this endpoint requires OAuth (access token)\n if ($this->config->getAccessToken() !== null) {\n $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'GET',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }\n\n /**\n * Operation getPage\n *\n * List\n *\n * @param int $limit The maximum number of results to display per page. (optional, default to 10)\n * @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return \\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error\n */\n public function getPage($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)\n {\n list($response) = $this->getPageWithHttpInfo($limit, $after, $properties, $associations, $archived);\n return $response;\n }\n\n /**\n * Operation getPageWithHttpInfo\n *\n * List\n *\n * @param int $limit The maximum number of results to display per page. (optional, default to 10)\n * @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return array of \\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error, HTTP status code, HTTP response headers (array of strings)\n */\n public function getPageWithHttpInfo($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)\n {\n $request = $this->getPageRequest($limit, $after, $properties, $associations, $archived);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? (string) $e->getResponse()->getBody() : null\n );\n } catch (ConnectException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n null,\n null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n (string) $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n\n switch($statusCode) {\n case 200:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n default:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\Error' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n }\n\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging';\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n case 200:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n default:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }\n\n /**\n * Operation getPageAsync\n *\n * List\n *\n * @param int $limit The maximum number of results to display per page. (optional, default to 10)\n * @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function getPageAsync($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)\n {\n return $this->getPageAsyncWithHttpInfo($limit, $after, $properties, $associations, $archived)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }\n\n /**\n * Operation getPageAsyncWithHttpInfo\n *\n * List\n *\n * @param int $limit The maximum number of results to display per page. (optional, default to 10)\n * @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function getPageAsyncWithHttpInfo($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)\n {\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging';\n $request = $this->getPageRequest($limit, $after, $properties, $associations, $archived);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n );\n }\n\n /**\n * Create request for operation 'getPage'\n *\n * @param int $limit The maximum number of results to display per page. (optional, default to 10)\n * @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)\n * @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)\n * @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)\n * @param bool $archived Whether to return only results that have been archived. (optional, default to false)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Psr7\\Request\n */\n public function getPageRequest($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)\n {\n\n $resourcePath = '/crm/v3/objects/deals';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n // query params\n if ($limit !== null) {\n if('form' === 'form' && is_array($limit)) {\n foreach($limit as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['limit'] = $limit;\n }\n }\n // query params\n if ($after !== null) {\n if('form' === 'form' && is_array($after)) {\n foreach($after as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['after'] = $after;\n }\n }\n // query params\n if ($properties !== null) {\n if('form' === 'form' && is_array($properties)) {\n foreach($properties as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['properties'] = $properties;\n }\n }\n // query params\n if ($associations !== null) {\n if('form' === 'form' && is_array($associations)) {\n foreach($associations as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['associations'] = $associations;\n }\n }\n // query params\n if ($archived !== null) {\n if('form' === 'form' && is_array($archived)) {\n foreach($archived as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['archived'] = $archived;\n }\n }\n\n\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json', '*/*']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json', '*/*'],\n []\n );\n }\n\n // for model (json/xml)\n if (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('hapikey');\n if ($apiKey !== null) {\n $queryParams['hapikey'] = $apiKey;\n }\n // this endpoint requires OAuth (access token)\n if ($this->config->getAccessToken() !== null) {\n $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'GET',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }\n\n /**\n * Operation update\n *\n * Update\n *\n * @param string $deal_id deal_id (required)\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input simple_public_object_input (required)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error\n */\n public function update($deal_id, $simple_public_object_input, $id_property = null)\n {\n list($response) = $this->updateWithHttpInfo($deal_id, $simple_public_object_input, $id_property);\n return $response;\n }\n\n /**\n * Operation updateWithHttpInfo\n *\n * Update\n *\n * @param string $deal_id (required)\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\HubSpot\\Client\\Crm\\Deals\\ApiException on non-2xx response\n * @throws \\InvalidArgumentException\n * @return array of \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject|\\HubSpot\\Client\\Crm\\Deals\\Model\\Error, HTTP status code, HTTP response headers (array of strings)\n */\n public function updateWithHttpInfo($deal_id, $simple_public_object_input, $id_property = null)\n {\n $request = $this->updateRequest($deal_id, $simple_public_object_input, $id_property);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? (string) $e->getResponse()->getBody() : null\n );\n } catch (ConnectException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n (int) $e->getCode(),\n null,\n null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n (string) $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n\n switch($statusCode) {\n case 200:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n default:\n if ('\\HubSpot\\Client\\Crm\\Deals\\Model\\Error' === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error', []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n }\n\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject';\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n case 200:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n default:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\HubSpot\\Client\\Crm\\Deals\\Model\\Error',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }\n\n /**\n * Operation updateAsync\n *\n * Update\n *\n * @param string $deal_id (required)\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function updateAsync($deal_id, $simple_public_object_input, $id_property = null)\n {\n return $this->updateAsyncWithHttpInfo($deal_id, $simple_public_object_input, $id_property)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }\n\n /**\n * Operation updateAsyncWithHttpInfo\n *\n * Update\n *\n * @param string $deal_id (required)\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Promise\\PromiseInterface\n */\n public function updateAsyncWithHttpInfo($deal_id, $simple_public_object_input, $id_property = null)\n {\n $returnType = '\\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObject';\n $request = $this->updateRequest($deal_id, $simple_public_object_input, $id_property);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n if ($returnType === '\\SplFileObject') {\n $content = $response->getBody(); //stream goes to serializer\n } else {\n $content = (string) $response->getBody();\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n (string) $response->getBody()\n );\n }\n );\n }\n\n /**\n * Create request for operation 'update'\n *\n * @param string $deal_id (required)\n * @param \\HubSpot\\Client\\Crm\\Deals\\Model\\SimplePublicObjectInput $simple_public_object_input (required)\n * @param string $id_property The name of a property whose values are unique for this object type (optional)\n *\n * @throws \\InvalidArgumentException\n * @return \\GuzzleHttp\\Psr7\\Request\n */\n public function updateRequest($deal_id, $simple_public_object_input, $id_property = null)\n {\n // verify the required parameter 'deal_id' is set\n if ($deal_id === null || (is_array($deal_id) && count($deal_id) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $deal_id when calling update'\n );\n }\n // verify the required parameter 'simple_public_object_input' is set\n if ($simple_public_object_input === null || (is_array($simple_public_object_input) && count($simple_public_object_input) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $simple_public_object_input when calling update'\n );\n }\n\n $resourcePath = '/crm/v3/objects/deals/{dealId}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n // query params\n if ($id_property !== null) {\n if('form' === 'form' && is_array($id_property)) {\n foreach($id_property as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['idProperty'] = $id_property;\n }\n }\n\n\n // path params\n if ($deal_id !== null) {\n $resourcePath = str_replace(\n '{' . 'dealId' . '}',\n ObjectSerializer::toPathValue($deal_id),\n $resourcePath\n );\n }\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json', '*/*']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json', '*/*'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($simple_public_object_input)) {\n if ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode(ObjectSerializer::sanitizeForSerialization($simple_public_object_input));\n } else {\n $httpBody = $simple_public_object_input;\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('hapikey');\n if ($apiKey !== null) {\n $queryParams['hapikey'] = $apiKey;\n }\n // this endpoint requires OAuth (access token)\n if ($this->config->getAccessToken() !== null) {\n $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'PATCH',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }\n\n /**\n * Create http client option\n *\n * @throws \\RuntimeException on file opening failure\n * @return array of http client options\n */\n protected function createHttpClientOption()\n {\n $options = [];\n if ($this->config->getDebug()) {\n $options[RequestOptions::DEBUG] = fopen($this->config->getDebugFile(), 'a');\n if (!$options[RequestOptions::DEBUG]) {\n throw new \\RuntimeException('Failed to open the debug file: ' . $this->config->getDebugFile());\n }\n }\n\n return $options;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app, folder","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Actions, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Component, folder","depth":8,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Acl, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActionItems, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Activity, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivityAnalytics, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ActivitySearch, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiActivityType, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiAutomation, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnything, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Dtos, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Events, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskAnythingPromptService.php","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"HistoryService.php","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AskJiminnyAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"AWS, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BillingManagement, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Cache, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedback, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Country, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"CustomerApi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Database, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Datadog, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DateTime, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"DealRisks","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ElasticSearch","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Eloquent","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encoding","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Encryption","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ES","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Faker","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlags","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"FileSystem","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gecko","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Gong","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"GuzzleHttp","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"KeyPoints","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Kiosk","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LanguageDetection","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeed","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Locks","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Math","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MediaPipeline","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MeetingBot, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Model, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Notification, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Nudge, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParagraphBreaker, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ParticipantSpeech, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PartitionedCookie, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackPage, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Playlist, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Prophet, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProsperWorks, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Queue, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Job, folder","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"RateLimitAware.php, abstract class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"RateLimitAwareWrapper.php, class","depth":11,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"BotsQueueConstants.php","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Constants.php","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"ProcessingQueueConstants.php","depth":10,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Router, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Saml2","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"SCIM","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Seeder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sentry","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Serializer, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Sidekick, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"Slack, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":9,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"TimeMemoryMapper, folder","depth":9,"on_screen":false,"role_description":"text"}]...
|
5871461784004157735
|
252663743049766078
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
master, menu
Start Listen Project: faVsco.js, menu
master, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
Editor for custom.log
Code changed:
Hide
Sync Changes
Hide This Notification
Reader Mode
Analyzing…
<?php
/**
* BasicApi
* PHP version 7.3
*
* @category Class
* @package HubSpot\Client\Crm\Deals
* @author OpenAPI Generator team
* @link [URL_WITH_CREDENTIALS] Class
* @package HubSpot\Client\Crm\Deals
* @author OpenAPI Generator team
* @link [URL_WITH_CREDENTIALS] int $hostIndex Host index (required)
*/
public function setHostIndex($hostIndex): void
{
$this->hostIndex = $hostIndex;
}
/**
* Get the host index
*
* @return int Host index
*/
public function getHostIndex()
{
return $this->hostIndex;
}
/**
* @return Configuration
*/
public function getConfig()
{
return $this->config;
}
/**
* Operation archive
*
* Archive
*
* @param string $deal_id deal_id (required)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return void
*/
public function archive($deal_id)
{
$this->archiveWithHttpInfo($deal_id);
}
/**
* Operation archiveWithHttpInfo
*
* Archive
*
* @param string $deal_id (required)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return array of null, HTTP status code, HTTP response headers (array of strings)
*/
public function archiveWithHttpInfo($deal_id)
{
$request = $this->archiveRequest($deal_id);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
return [null, $statusCode, $response->getHeaders()];
} catch (ApiException $e) {
switch ($e->getCode()) {
default:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\Error',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
}
throw $e;
}
}
/**
* Operation archiveAsync
*
* Archive
*
* @param string $deal_id (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function archiveAsync($deal_id)
{
return $this->archiveAsyncWithHttpInfo($deal_id)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation archiveAsyncWithHttpInfo
*
* Archive
*
* @param string $deal_id (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function archiveAsyncWithHttpInfo($deal_id)
{
$returnType = '';
$request = $this->archiveRequest($deal_id);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
return [null, $response->getStatusCode(), $response->getHeaders()];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'archive'
*
* @param string $deal_id (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function archiveRequest($deal_id)
{
// verify the required parameter 'deal_id' is set
if ($deal_id === null || (is_array($deal_id) && count($deal_id) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $deal_id when calling archive'
);
}
$resourcePath = '/crm/v3/objects/deals/{dealId}';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// path params
if ($deal_id !== null) {
$resourcePath = str_replace(
'{' . 'dealId' . '}',
ObjectSerializer::toPathValue($deal_id),
$resourcePath
);
}
if ($multipart) {
$headers = $this->headerSelector->selectHeadersForMultipart(
['*/*']
);
} else {
$headers = $this->headerSelector->selectHeaders(
['*/*'],
[]
);
}
// for model (json/xml)
if (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif ($headers['Content-Type'] === 'application/json') {
$httpBody = \GuzzleHttp\json_encode($formParams);
} else {
// for HTTP post (form)
$httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
}
}
// this endpoint requires API key authentication
$apiKey = $this->config->getApiKeyWithPrefix('hapikey');
if ($apiKey !== null) {
$queryParams['hapikey'] = $apiKey;
}
// this endpoint requires OAuth (access token)
if ($this->config->getAccessToken() !== null) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$query = \GuzzleHttp\Psr7\Query::build($queryParams);
return new Request(
'DELETE',
$this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation create
*
* Create
*
* @param \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectInput $simple_public_object_input simple_public_object_input (required)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return \HubSpot\Client\Crm\Deals\Model\SimplePublicObject|\HubSpot\Client\Crm\Deals\Model\Error
*/
public function create($simple_public_object_input)
{
list($response) = $this->createWithHttpInfo($simple_public_object_input);
return $response;
}
/**
* Operation createWithHttpInfo
*
* Create
*
* @param \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectInput $simple_public_object_input (required)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return array of \HubSpot\Client\Crm\Deals\Model\SimplePublicObject|\HubSpot\Client\Crm\Deals\Model\Error, HTTP status code, HTTP response headers (array of strings)
*/
public function createWithHttpInfo($simple_public_object_input)
{
$request = $this->createRequest($simple_public_object_input);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
switch($statusCode) {
case 201:
if ('\HubSpot\Client\Crm\Deals\Model\SimplePublicObject' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\SimplePublicObject', []),
$response->getStatusCode(),
$response->getHeaders()
];
default:
if ('\HubSpot\Client\Crm\Deals\Model\Error' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\Error', []),
$response->getStatusCode(),
$response->getHeaders()
];
}
$returnType = '\HubSpot\Client\Crm\Deals\Model\SimplePublicObject';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
} catch (ApiException $e) {
switch ($e->getCode()) {
case 201:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\SimplePublicObject',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
default:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\Error',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
}
throw $e;
}
}
/**
* Operation createAsync
*
* Create
*
* @param \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectInput $simple_public_object_input (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function createAsync($simple_public_object_input)
{
return $this->createAsyncWithHttpInfo($simple_public_object_input)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation createAsyncWithHttpInfo
*
* Create
*
* @param \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectInput $simple_public_object_input (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function createAsyncWithHttpInfo($simple_public_object_input)
{
$returnType = '\HubSpot\Client\Crm\Deals\Model\SimplePublicObject';
$request = $this->createRequest($simple_public_object_input);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'create'
*
* @param \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectInput $simple_public_object_input (required)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function createRequest($simple_public_object_input)
{
// verify the required parameter 'simple_public_object_input' is set
if ($simple_public_object_input === null || (is_array($simple_public_object_input) && count($simple_public_object_input) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $simple_public_object_input when calling create'
);
}
$resourcePath = '/crm/v3/objects/deals';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
if ($multipart) {
$headers = $this->headerSelector->selectHeadersForMultipart(
['application/json', '*/*']
);
} else {
$headers = $this->headerSelector->selectHeaders(
['application/json', '*/*'],
['application/json']
);
}
// for model (json/xml)
if (isset($simple_public_object_input)) {
if ($headers['Content-Type'] === 'application/json') {
$httpBody = \GuzzleHttp\json_encode(ObjectSerializer::sanitizeForSerialization($simple_public_object_input));
} else {
$httpBody = $simple_public_object_input;
}
} elseif (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif ($headers['Content-Type'] === 'application/json') {
$httpBody = \GuzzleHttp\json_encode($formParams);
} else {
// for HTTP post (form)
$httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
}
}
// this endpoint requires API key authentication
$apiKey = $this->config->getApiKeyWithPrefix('hapikey');
if ($apiKey !== null) {
$queryParams['hapikey'] = $apiKey;
}
// this endpoint requires OAuth (access token)
if ($this->config->getAccessToken() !== null) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$query = \GuzzleHttp\Psr7\Query::build($queryParams);
return new Request(
'POST',
$this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation getById
*
* Read
*
* @param string $deal_id deal_id (required)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
* @param string $id_property The name of a property whose values are unique for this object type (optional)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations|\HubSpot\Client\Crm\Deals\Model\Error
*/
public function getById($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)
{
list($response) = $this->getByIdWithHttpInfo($deal_id, $properties, $associations, $archived, $id_property);
return $response;
}
/**
* Operation getByIdWithHttpInfo
*
* Read
*
* @param string $deal_id (required)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
* @param string $id_property The name of a property whose values are unique for this object type (optional)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return array of \HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations|\HubSpot\Client\Crm\Deals\Model\Error, HTTP status code, HTTP response headers (array of strings)
*/
public function getByIdWithHttpInfo($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)
{
$request = $this->getByIdRequest($deal_id, $properties, $associations, $archived, $id_property);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
switch($statusCode) {
case 200:
if ('\HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations', []),
$response->getStatusCode(),
$response->getHeaders()
];
default:
if ('\HubSpot\Client\Crm\Deals\Model\Error' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\Error', []),
$response->getStatusCode(),
$response->getHeaders()
];
}
$returnType = '\HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
} catch (ApiException $e) {
switch ($e->getCode()) {
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
default:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\Error',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
}
throw $e;
}
}
/**
* Operation getByIdAsync
*
* Read
*
* @param string $deal_id (required)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
* @param string $id_property The name of a property whose values are unique for this object type (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getByIdAsync($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)
{
return $this->getByIdAsyncWithHttpInfo($deal_id, $properties, $associations, $archived, $id_property)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation getByIdAsyncWithHttpInfo
*
* Read
*
* @param string $deal_id (required)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
* @param string $id_property The name of a property whose values are unique for this object type (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getByIdAsyncWithHttpInfo($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)
{
$returnType = '\HubSpot\Client\Crm\Deals\Model\SimplePublicObjectWithAssociations';
$request = $this->getByIdRequest($deal_id, $properties, $associations, $archived, $id_property);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'getById'
*
* @param string $deal_id (required)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
* @param string $id_property The name of a property whose values are unique for this object type (optional)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function getByIdRequest($deal_id, $properties = null, $associations = null, $archived = false, $id_property = null)
{
// verify the required parameter 'deal_id' is set
if ($deal_id === null || (is_array($deal_id) && count($deal_id) === 0)) {
throw new \InvalidArgumentException(
'Missing the required parameter $deal_id when calling getById'
);
}
$resourcePath = '/crm/v3/objects/deals/{dealId}';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// query params
if ($properties !== null) {
if('form' === 'form' && is_array($properties)) {
foreach($properties as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
$queryParams['properties'] = $properties;
}
}
// query params
if ($associations !== null) {
if('form' === 'form' && is_array($associations)) {
foreach($associations as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
$queryParams['associations'] = $associations;
}
}
// query params
if ($archived !== null) {
if('form' === 'form' && is_array($archived)) {
foreach($archived as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
$queryParams['archived'] = $archived;
}
}
// query params
if ($id_property !== null) {
if('form' === 'form' && is_array($id_property)) {
foreach($id_property as $key => $value) {
$queryParams[$key] = $value;
}
}
else {
$queryParams['idProperty'] = $id_property;
}
}
// path params
if ($deal_id !== null) {
$resourcePath = str_replace(
'{' . 'dealId' . '}',
ObjectSerializer::toPathValue($deal_id),
$resourcePath
);
}
if ($multipart) {
$headers = $this->headerSelector->selectHeadersForMultipart(
['application/json', '*/*']
);
} else {
$headers = $this->headerSelector->selectHeaders(
['application/json', '*/*'],
[]
);
}
// for model (json/xml)
if (count($formParams) > 0) {
if ($multipart) {
$multipartContents = [];
foreach ($formParams as $formParamName => $formParamValue) {
$formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];
foreach ($formParamValueItems as $formParamValueItem) {
$multipartContents[] = [
'name' => $formParamName,
'contents' => $formParamValueItem
];
}
}
// for HTTP post (form)
$httpBody = new MultipartStream($multipartContents);
} elseif ($headers['Content-Type'] === 'application/json') {
$httpBody = \GuzzleHttp\json_encode($formParams);
} else {
// for HTTP post (form)
$httpBody = \GuzzleHttp\Psr7\Query::build($formParams);
}
}
// this endpoint requires API key authentication
$apiKey = $this->config->getApiKeyWithPrefix('hapikey');
if ($apiKey !== null) {
$queryParams['hapikey'] = $apiKey;
}
// this endpoint requires OAuth (access token)
if ($this->config->getAccessToken() !== null) {
$headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();
}
$defaultHeaders = [];
if ($this->config->getUserAgent()) {
$defaultHeaders['User-Agent'] = $this->config->getUserAgent();
}
$headers = array_merge(
$defaultHeaders,
$headerParams,
$headers
);
$query = \GuzzleHttp\Psr7\Query::build($queryParams);
return new Request(
'GET',
$this->config->getHost() . $resourcePath . ($query ? "?{$query}" : ''),
$headers,
$httpBody
);
}
/**
* Operation getPage
*
* List
*
* @param int $limit The maximum number of results to display per page. (optional, default to 10)
* @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return \HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging|\HubSpot\Client\Crm\Deals\Model\Error
*/
public function getPage($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)
{
list($response) = $this->getPageWithHttpInfo($limit, $after, $properties, $associations, $archived);
return $response;
}
/**
* Operation getPageWithHttpInfo
*
* List
*
* @param int $limit The maximum number of results to display per page. (optional, default to 10)
* @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
*
* @throws \HubSpot\Client\Crm\Deals\ApiException on non-2xx response
* @throws \InvalidArgumentException
* @return array of \HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging|\HubSpot\Client\Crm\Deals\Model\Error, HTTP status code, HTTP response headers (array of strings)
*/
public function getPageWithHttpInfo($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)
{
$request = $this->getPageRequest($limit, $after, $properties, $associations, $archived);
try {
$options = $this->createHttpClientOption();
try {
$response = $this->client->send($request, $options);
} catch (RequestException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
$e->getResponse() ? $e->getResponse()->getHeaders() : null,
$e->getResponse() ? (string) $e->getResponse()->getBody() : null
);
} catch (ConnectException $e) {
throw new ApiException(
"[{$e->getCode()}] {$e->getMessage()}",
(int) $e->getCode(),
null,
null
);
}
$statusCode = $response->getStatusCode();
if ($statusCode < 200 || $statusCode > 299) {
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
(string) $request->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
switch($statusCode) {
case 200:
if ('\HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging', []),
$response->getStatusCode(),
$response->getHeaders()
];
default:
if ('\HubSpot\Client\Crm\Deals\Model\Error' === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, '\HubSpot\Client\Crm\Deals\Model\Error', []),
$response->getStatusCode(),
$response->getHeaders()
];
}
$returnType = '\HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging';
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
} catch (ApiException $e) {
switch ($e->getCode()) {
case 200:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
default:
$data = ObjectSerializer::deserialize(
$e->getResponseBody(),
'\HubSpot\Client\Crm\Deals\Model\Error',
$e->getResponseHeaders()
);
$e->setResponseObject($data);
break;
}
throw $e;
}
}
/**
* Operation getPageAsync
*
* List
*
* @param int $limit The maximum number of results to display per page. (optional, default to 10)
* @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getPageAsync($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)
{
return $this->getPageAsyncWithHttpInfo($limit, $after, $properties, $associations, $archived)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation getPageAsyncWithHttpInfo
*
* List
*
* @param int $limit The maximum number of results to display per page. (optional, default to 10)
* @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getPageAsyncWithHttpInfo($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)
{
$returnType = '\HubSpot\Client\Crm\Deals\Model\CollectionResponseSimplePublicObjectWithAssociationsForwardPaging';
$request = $this->getPageRequest($limit, $after, $properties, $associations, $archived);
return $this->client
->sendAsync($request, $this->createHttpClientOption())
->then(
function ($response) use ($returnType) {
if ($returnType === '\SplFileObject') {
$content = $response->getBody(); //stream goes to serializer
} else {
$content = (string) $response->getBody();
}
return [
ObjectSerializer::deserialize($content, $returnType, []),
$response->getStatusCode(),
$response->getHeaders()
];
},
function ($exception) {
$response = $exception->getResponse();
$statusCode = $response->getStatusCode();
throw new ApiException(
sprintf(
'[%d] Error connecting to the API (%s)',
$statusCode,
$exception->getRequest()->getUri()
),
$statusCode,
$response->getHeaders(),
(string) $response->getBody()
);
}
);
}
/**
* Create request for operation 'getPage'
*
* @param int $limit The maximum number of results to display per page. (optional, default to 10)
* @param string $after The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results. (optional)
* @param string[] $properties A comma separated list of the properties to be returned in the response. If any of the specified properties are not present on the requested object(s), they will be ignored. (optional)
* @param string[] $associations A comma separated list of object types to retrieve associated IDs for. If any of the specified associations do not exist, they will be ignored. (optional)
* @param bool $archived Whether to return only results that have been archived. (optional, default to false)
*
* @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request
*/
public function getPageRequest($limit = 10, $after = null, $properties = null, $associations = null, $archived = false)
{
$res...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
51286
|
1804
|
5
|
2026-05-18T08:25:02.293638+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779092702293_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/jiminny/app/front-end/src/components faVsco.js – ~/jiminny/app/front-end/src/components/Settings/Kiosk/modals/EditTeamModal/EditTeamModal.vue...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
master, menu
Start Listen Project: faVsco.js, menu
master, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
2
Previous Highlighted Error
Next Highlighted Error
<template>
<AppDrawerModal v-bind="drawerAttrs" #default="{ $style: drawerStyle }">
<div :class="drawerStyle.formGrid">
<div :class="drawerStyle.sectionTitle">General</div>
<!-- Name -->
<AppFormField
field-label="Company name"
v-model="formState.name"
:required="true"
name="name"
rules="required"
data-testid="setup-trial-name"
/>
<!-- Owner Email -->
<AppFormField
v-if="!flags.ownerCreated"
type="email"
field-label="Owner Email"
v-model="formState.owner_email"
:required="true"
name="owner_email"
rules="required|email"
data-testid="setup-trial-owner-email"
/>
<AppFormField
v-else
field-label="Owner"
name="owner_id"
:required="true"
rules="required"
v-model="formState.owner_id"
:options="formData.admins.data || []"
:loading="formData.admins.loading"
type="select"
option-label="name"
track-by="id"
data-testid="setup-trial-owner-email"
/>
<!-- CRM -->
<AppFormField
v-model="formState.crm"
name="crm"
type="select"
field-label="CRM"
:required="true"
rules="required"
:options="formData.crmOptions.data || []"
track-by="id"
option-label="label"
:loading="formData.crmOptions.loading"
data-testid="setup-trial-crm"
:disabled="flags.ownerCreated"
/>
<!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->
<AppFormField
v-if="flags.teamCreated && formData.partners.data?.length > 1"
v-model="formState.partner_id"
name="partner_id"
type="select"
field-label="Partner"
:options="formData.partners.data || []"
track-by="id"
option-label="name"
:loading="formData.partners.loading"
data-testid="setup-trial-partner"
/>
<!-- Opportunity Sync Period -->
<AppFormField
:disabled="!requireSyncPeriod"
v-model="formState.opportunity_sync_period"
name="opportunity_sync_period"
type="select"
field-label="Import Opportunities Sync Period"
:required="requireSyncPeriod"
:rules="requireSyncPeriod ? 'required' : ''"
:options="syncPeriodOptions"
track-by="id"
option-label="label"
data-testid="setup-trial-sync-period"
/>
<!-- Calendar -->
<AppFormField
v-model="formState.calendar"
name="calendar"
type="radios"
ui="radios"
field-label="Calendar"
:required="true"
rules="required"
:options="formData.calendarOptions.data || []"
data-testid="setup-trial-calendar"
:disabled="flags.ownerCreated"
/>
<!-- Softphone -->
<div>
<div :class="[$style.fieldLabel, drawerStyle.fieldLabel]">
Softphone
</div>
<AppFormField
v-model="formState.features"
name="softphone"
type="checkbox"
:value="SOFTPHONE_FEATURE_ID"
:field-label="jiminnyVoiceLabel"
data-testid="setup-trial-softphone"
/>
</div>
<EditTeamAddressFields
v-if="softphoneEnabled"
:disabled="flags.billingDisabled"
/>
</div>
<div :class="$style.tearsGrid">
<div :class="$style.sectionTitle">
<div :class="drawerStyle.sectionTitle">Tiers & Add-ons</div>
<AppButton
icon="question"
label="Tiers explained"
mods="seamless link primary"
href="[URL_WITH_CREDENTIALS]
import useAppForm, {
SilentFormError,
} from "@/components/shared/AppFormElements/useAppForm";
import AppForm from "@/components/shared/AppFormElements/AppForm.vue";
import AppFormField from "@/components/shared/AppFormElements/AppFormField.vue";
import useAsyncData from "@/composables/useAsyncData";
import EditTeamAddressFields from "./EditTeamAddressFields.vue";
import AppDrawerModal from "@/components/shared/modals/AppDrawerModal.vue";
import { useDrawerModal } from "@/composables/useDrawerModal";
import { promptModal } from "jenesius-vue-modal";
import ChangeOwnerConfirmModal from "@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue";
import EventBus from "@/utils/event-bus";
import { getFeaturesData } from "./features";
import FeaturesGroup from "./FeaturesGroup.vue";
import FeaturesList from "./FeaturesList.vue";
import { ErrorMessage, useField } from "vee-validate";
import AppButton from "@/components/shared/Buttons/AppButton.vue";
import { useBrandedI18n } from "@/composables/useBrandedI18n";
// Define props
const props = defineProps({
data: {
type: Object,
required: true,
},
teamId: String,
});
const { tb } = useBrandedI18n();
// Branded i18n computed ref
const jiminnyVoiceLabel = tb("kiosk.edit-team.jiminny-voice--whitelabel");
const flags = reactive({
teamCreated: computed(() => !!props.data.id),
ownerCreated: computed(() => !!props.data.owner_id),
billingDisabled: computed(
() =>
!!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),
),
});
// Setup form
const form = useAppForm({
onSubmit,
toastSuccess: flags.teamCreated
? "Account updated successfully!"
: "Account created successfully!",
});
// Setup form state with initial values
const {
formState,
hasChanges,
updateSnapshot,
exportFormState,
softphoneEnabled,
} = useEditTeamForm(props.data);
// Load required data
const formData = reactive({
calendarOptions: useAsyncData(getCalendars, { showError: true }),
crmOptions: useAsyncData(getCrmServices, { showError: true }),
features: useAsyncData(getFeaturesData, { showError: true }),
partners: useAsyncData(getPartners, { showError: true }),
admins: reactive(useAdminsList()),
});
const { close } = useDrawerModal({ onClose });
const { tierModel, featuresGroups } = useFeaturesManager();
const { requireSyncPeriod } = useRequireSyncPeriod();
const drawerAttrs = computed(() => ({
as: AppForm,
title: flags.teamCreated ? "Edit Organization" : "Setup Account",
headerButtons: [
{
type: "submit",
label: "Save",
variant: "primary",
"data-testid": "setup-trial-submit",
disabled: !unref(hasChanges),
},
],
contentAttrs: {
busy: Object.values(formData).some(({ loading }) => loading),
},
}));
function onClose() {
return modalDiscardGuard({
onSave: form.submitHandler,
hasChanges: unref(hasChanges),
});
}
async function onSubmit() {
const ownerChanged =
flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;
if (ownerChanged) {
const confirmed = await promptModal(ChangeOwnerConfirmModal);
if (!confirmed) throw new SilentFormError("Owner change not confirmed");
}
const data = exportFormState();
// create or update the team
!flags.teamCreated
? await axios.post("/api/v1/settings/organizations", data)
: await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);
EventBus.$emit("team.updated");
// update form snapshot
updateSnapshot();
close();
}
function useFeaturesManager() {
const tierField = useField("tier_id", "required", {
initialValue: unref(formState).tier_id,
});
const tierModel = computed({
get() {
return unref(formState).tier_id;
},
set(tierId) {
setTier(tierId);
tierField.value.value = tierId;
},
});
const featuresGroups = computed(() => {
const { groups } = formData.features.data || {};
if (!groups) return [];
return [groups.TIER, groups["ADD_ON"]].filter(Boolean).flat();
});
function setTier(tierId) {
const selectedFeatures = new Set(unref(formState).features);
const { features, tiers } = formData.features.data;
// clear all tier features
features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));
const tier = tiers.find((tier) => tier.id === tierId);
// select only selected tiers features
[...tier.inherits, tierId]
.map((tierId) => features.byTier[tierId] || [])
.flat()
.forEach((feature) => selectedFeatures.add(feature.id));
Object.assign(unref(formState), {
features: Array.from(selectedFeatures),
tier_id: tierId,
});
}
return { tierModel, setTier, featuresGroups };
}
function useRequireSyncPeriod() {
// Computed property to check if opportunity sync period is required
const requireSyncPeriod = computed(() => {
return !!formData.crmOptions.data?.find(
(item) => formState.value.crm === item.id,
)?.requireInitialSyncPeriod;
});
watch(requireSyncPeriod, (required) => {
formState.value.opportunity_sync_period = required
? formState.value.opportunity_sync_period ||
DEFAULT_OPPORTUNITY_SYNC_PERIOD
: null;
});
return { requireSyncPeriod };
}
function useAdminsList() {
return useAsyncData(async () => {
const data = await fetchUsersData(props.data.id);
return data.filter((user) => user.roles?.some((e) => e.name == "admin"));
});
}
</script>
<style lang="less" module>
.fieldLabel:has(~ * :disabled) {
opacity: 0.6;
}
.tearsGrid {
display: grid;
padding-top: 10px;
gap: 10px;
.sectionTitle {
margin-top: 30px;
display: flex;
justify-content: space-between;
}
}
.errorMessage {
color: var(--color-danger);
}
.docsRef {
font-size: 14px;
}
</style>
Sync Changes
Hide This Notification
Code changed:
Hide
6
17
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Console;
use Illuminate\Console\ConfirmableTrait;
use Illuminate\Console\Scheduling\Event;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use Jiminny\Component\Acl\RemoveExpiredRoleChangeEventsCommand;
use Jiminny\Component\ActionItems\Commands\SendActionItemsCommand;
use Jiminny\Component\AiActivityType\Commands\AutodetectAiActivityTypeCommand;
use Jiminny\Component\AskJiminnyAi\Commands\ProphetAnalyzeClosedDealsCommand;
use Jiminny\Component\Cache\Constants;
use Jiminny\Component\DealInsights\Commands\SendDealsUpdateCommand;
use Jiminny\Component\MediaPipeline\Command\MediaPipelineRestartCommand;
use Jiminny\Component\MediaPipeline\Command\ReportActivityProcessingTimeToDatadogCommand;
use Jiminny\Component\MediaPipeline\Command\ReportProcessingStatesToDatadogCommand;
use Jiminny\Component\Transcription\Commands\OverrideTranscriptionLocaleCommand;
use Jiminny\Component\Transcription\Commands\RetryFailedTranscriptionsCommand;
use Jiminny\Component\Transcription\Commands\RetryStuckTranscriptionsCommand;
use Jiminny\Console\Commands\Activities\ActivitiesMatchCrmCommand;
use Jiminny\Console\Commands\Activities\AutologOldActivitiesCommand;
use Jiminny\Console\Commands\Activities\DeleteActivitiesForChurnedTeamsCommand;
use Jiminny\Console\Commands\Activities\DeleteActivitiesForRetentionTeamsCommand;
use Jiminny\Console\Commands\Activities\DownloadMissingTrackCommand;
use Jiminny\Console\Commands\Activities\FixActivitiesOpportunity;
use Jiminny\Console\Commands\Activities\HardDeleteActivitiesForChurnedTeamsCommand;
use Jiminny\Console\Commands\Activities\HardDeleteActivitiesTeamsCommand;
use Jiminny\Console\Commands\Activities\ReassignTranscriptCommand;
use Jiminny\Console\Commands\Activities\ReindexRecentActivitiesCommand;
use Jiminny\Console\Commands\Activities\RetryProspectSummaryCommand;
use Jiminny\Console\Commands\Calendars\Events\CalendarEventDeleteCancelledCommand;
use Jiminny\Console\Commands\Calendars\Events\CalendarEventDeletePastCommand;
use Jiminny\Console\Commands\Crm\BackfillOpportunityUserFromAccountCommand;
use Jiminny\Console\Commands\Crm\CleanDuplicateFieldDataCommand;
use Jiminny\Console\Commands\Crm\Hubspot\ProcessMergedObjectsCommand;
use Jiminny\Console\Commands\Crm\Hubspot\RestoreDealAssociationsCommand;
use Jiminny\Console\Commands\Crm\ProcessHubspotObjectsSyncBatches;
use Jiminny\Console\Commands\Crm\PurgeDeletedOpportunitiesCommand;
use Jiminny\Console\Commands\Crm\Hubspot\ListJournalWebhookSubscriptionsCommand;
use Jiminny\Console\Commands\Crm\Hubspot\SetupJournalDealWebhookSubscriptionsCommand;
use Jiminny\Console\Commands\Crm\SyncHubspotActiveDeals;
use Jiminny\Console\Commands\Crm\SyncOpportunitiesMissingFieldDataCommand;
use Jiminny\Console\Commands\DeleteOldAiCrmNotesCommand;
use Jiminny\Console\Commands\DeleteS3LeftoversCommand;
use Jiminny\Console\Commands\DiarizeViaAiParticipantIdentificationCommand;
use Jiminny\Console\Commands\Elasticsearch\DeleteEmailDocumentsCommand;
use Jiminny\Console\Commands\Elasticsearch\RemoveGhostParticipantsCommand;
use Jiminny\Console\Commands\FlushRolesPermissionsCache;
use Jiminny\Console\Commands\GenerateInternalWebhookToken;
use Jiminny\Console\Commands\IssueMcpTokenCommand;
use Jiminny\Console\Commands\HubspotJournalPollingCommand;
use Jiminny\Console\Commands\HubspotWebhookServiceCommand;
use Jiminny\Console\Commands\Livestream\StopHangingLivestreamsCommand;
use Jiminny\Console\Commands\Mailboxes\DeleteEmailMessagesWithoutActivityCommand;
use Jiminny\Console\Commands\Mailboxes\DeleteInboxEmailsCommand;
use Jiminny\Console\Commands\PurgeSoftDeletedOpportunitiesCommand;
use Jiminny\Console\Commands\PurgeSyncBatchesCommand;
use Jiminny\Console\Commands\RemoveDeleteMarkersCommand;
use Jiminny\Console\Commands\RemoveExpiredNudgesCommand;
use Jiminny\Console\Commands\RemoveUnusedParticipantSpeechesCommand;
use Jiminny\Console\Commands\Reports\AutomatedReportsRetentionPolicyCommand;
use Jiminny\Console\Commands\Reports\DeleteReportCommand;
use Jiminny\Console\Commands\RestoreActivityCrmProviderIdCommand;
use Jiminny\Console\Commands\RestoreActivityTypeCommand;
use Jiminny\Console\Commands\SendNudgeExpirationWarningsCommand;
use Jiminny\Console\Commands\Slack\SyncSlackUserCommand;
use Jiminny\Console\Commands\Teams\SyncTeamUsersCommand;
use Jiminny\Console\Commands\Teams\TeamDeleteCommand;
use Jiminny\Console\Commands\Teams\TeamsDeleteDeactivatedCommand;
use Jiminny\Console\Commands\Teams\TeamsDeleteRetentionCommand;
use Jiminny\Console\Commands\Teams\TeamSettingPutCommand;
use Jiminny\Console\Commands\Teams\UpdateTeamsCommand;
use Jiminny\Console\Commands\Tracks\CleanupActivityTracksCommand;
use Jiminny\Console\Commands\Tracks\DeleteUnusedTracksCommand;
use Jiminny\Console\Commands\Tracks\RestoreTracksCommand;
use Jiminny\Console\Commands\Transcription\DeleteOldTranscriptionsCommand;
use Jiminny\Console\Commands\Transcription\UpdateOldTranscriptionModelLocalesCommand;
use Jiminny\Console\Commands\Twilio\DeleteChurnedSubAccounts;
use Jiminny\Console\Commands\Twilio\DeletePredefinedSubAccounts;
use Jiminny\Console\Commands\Twilio\ReleaseNumbersCommand;
use Jiminny\Jobs\Activity\SyncActivity;
use Jiminny\Models\Activity;
use Jiminny\Models\InboxEmail;
use Jiminny\Services\RecallAI\Commands\ImportRegionMeetingCommand;
use Jiminny\Services\RecallAI\Commands\ScheduleBotCommand;
class Kernel extends ConsoleKernel
{
use ConfirmableTrait;
/**
* The Artisan commands provided by your application.
*
* @var string[]
*/
protected $commands = [
Commands\GeckoExport\GeckoExportTranscriptCommand::class,
Commands\GeckoExport\GeckoExportTranscriptionCommand::class,
Commands\GeckoExport\GeckoExportParticipantSpeechesCommand::class,
Commands\Activities\DeleteForCoachesCommand::class,
ReindexRecentActivitiesCommand::class,
Commands\Crm\BullhornPingCommand::class,
Commands\Crm\BullhornSessionCommand::class,
Commands\Crm\BullhornSearchCommand::class,
Commands\PlaybackThemes\TopicsConsolidateCommand::class,
Commands\PlaybackThemes\PlaybackThemesCopyCommand::class,
Commands\PlaybackThemes\AssignTopicsUsedBySingleTeamCommand::class,
Commands\PlaybackThemes\PlaybackThemesMigrateToVersionsCommand::class,
Commands\Vocabulary\VocabularyCopyCommand::class,
Commands\Transcription\TranscriptionPrintRaw::class,
Commands\Migrate\JiminnyMigratePopulateActivitySourceCommand::class,
Commands\EngagementStats\JiminnyEngagementStatsExplainCommand::class,
Commands\EngagementStatsRegenerateCommand::class,
Commands\Analytics\NumberOfActivitiesPerActivityTypeCommand::class,
Commands\Elasticsearch\MappingRunCommand::class,
Commands\Elasticsearch\MappingInstallCommand::class,
Commands\Elasticsearch\UpdateEsMappingSettingsCommand::class,
Commands\Analytics\TranscriptionWordMatchCommand::class,
Commands\JiminnyCacheClearCommand::class,
Commands\Transcription\TranscriptionSearchCommand::class,
RetryStuckTranscriptionsCommand::class,
RetryFailedTranscriptionsCommand::class,
Commands\JiminnyDebugCommand::class,
Commands\RunAiCallScoringForUntypedActivitiesCommand::class,
Commands\Calendars\SyncCalendars::class,
Commands\Calendars\SyncDeletedEvents::class,
Commands\Twilio\FetchMetrics::class,
Commands\Twilio\FetchEvents::class,
Commands\Twilio\FetchSummary::class,
Commands\Twilio\SyncZoneAccess::class,
Commands\DatabaseTableCount::class,
Commands\PurgeConferences::class,
Commands\ResetElasticSearch::class,
Commands\CreateDatabaseUsers::class,
Commands\Activities\NotifyNotLogged::class,
Commands\Crm\SyncTeamMetadata::class,
Commands\Crm\SyncProfileMetadata::class,
Commands\Crm\SyncContact::class,
Commands\Crm\SyncObjects::class,
Commands\Crm\SyncHubspotObjects::class,
Commands\Crm\SyncAccount::class,
Commands\Crm\ResetGovernorLimits::class,
Commands\Crm\ManageSyncStrategyCommand::class,
Commands\ImportRecording::class,
Commands\TrackImported::class,
Commands\Twilio\RecoverTwilioTracksCommand::class,
Commands\Crm\SetupLayouts::class,
Commands\Tracks\SyncTwilioTracks::class,
Commands\Activities\StatusCount::class,
Commands\Mailboxes\TextRelay\WatchMailboxEvents::class,
Commands\Mailboxes\InboxCreate::class,
Commands\Mailboxes\InboxSync::class,
Commands\Mailboxes\BatchCreate::class,
Commands\Mailboxes\BatchProcess::class,
Commands\Mailboxes\InboxPurge::class,
Commands\Mailboxes\BatchRetryFailed::class,
Commands\Mailboxes\BatchFailStalled::class,
Commands\Mailboxes\SkipListsRefresh::class,
Commands\Mailboxes\SkipListsDump::class,
Commands\Mailboxes\TextRelay\SyncMailbox::class,
Commands\Mailboxes\DeleteInboxEmailsCommand::class,
Commands\Mailboxes\DeleteEmailMessagesCommand::class,
DeleteEmailMessagesWithoutActivityCommand::class,
Commands\Tracks\CheckIntegrity::class,
Commands\Twilio\RemoteLifecycle::class,
Commands\Twilio\SyncNumbers::class,
Commands\Crm\SetupActivityTypeForFollowUp::class,
Commands\Activities\CheckPlayable::class,
Commands\Activities\ActivityDeleteCommand::class,
Commands\Activities\Copy::class,
Commands\Activities\ActivityHardDeleteCommand::class,
Commands\Reports\Team::class,
Commands\Reports\GenerateMarketingReport::class,
Commands\Reports\AutomatedReportsCommand::class,
Commands\Reports\AutomatedReportsSendCommand::class,
Commands\MuteOrganizerChannel::class,
Commands\Tracks\DeleteTracks::class,
Commands\Tracks\RetryDownload::class,
Commands\Tracks\RetryFailedDownloads::class,
Commands\Twilio\SyncAddresses::class,
Commands\Activities\UpdateElasticSearch::class,
Commands\MakeSlackLiveCoachingChatNotesOn::class,
Commands\Activities\PreMeetingNotification::class,
ScheduleBotCommand::class,
ImportRegionMeetingCommand::class,
Commands\Activities\MonitorMeetingCountCommand::class,
Commands\Activities\MonitorMeetingStartCommand::class,
Commands\Activities\MonitorMeetingEndCommand::class,
Commands\SyncActivity::class,
Commands\PhpApm::class,
Commands\Crm\SyncOpportunity::class,
Commands\Crm\SyncLead::class,
Commands\Users\SyncLicenceDataToSalesforce::class,
Commands\Crm\UpdateOpportunitySpecifications::class,
Commands\Users\SyncToIntercom::class,
Commands\Users\SyncToUserPilot::class,
Commands\Teams\SyncToPlanhat::class,
Commands\Twilio\SetZoneAccess::class,
Commands\Users\CreateDefaultSavedSearchesCommand::class,
Commands\Crm\SendNotLogged::class,
Commands\Teams\DeactivateTeamCommand::class,
Commands\Crm\SyncFieldMetadata::class,
Commands\Postmark\SyncEmailTemplatesCommand::class,
Commands\PlaybackThemes\ImportTriggersFromTranslatedCsvCommand::class,
Commands\Activities\PreMeetingReminder::class,
Commands\Activities\CustomerActivitiesExport::class,
Commands\Users\RefreshAccessToken::class,
Commands\Calendars\SetupCalendarSubscription::class,
Commands\Activities\InviteMeetingBot::class,
Commands\Activities\ChangeActivitiesPlaybookCategoryOnPlaybookChange::class,
Commands\Crm\MigrateProvider::class,
Commands\Activities\MigrateLocationFromCalendarEventToActivities::class,
Commands\HelperTruncateCoachingTables::class,
Commands\FixCrossTenantIssues::class,
Commands\Activities\CloudCall\SetupIntegration::class,
Commands\Activities\CloudTalk\FixTimeZone::class,
Commands\Activities\Orum\SetupIntegration::class,
Commands\Activities\JustCall\SetupIntegration::class,
Commands\Activities\RingCentral\AddInboundPromptSupport::class,
Commands\Dialers\Dialpad\SubscribeToWebhooks::class,
Commands\RecalculateDealRisksCommand::class,
SendDealsUpdateCommand::class,
Commands\Activities\SetProviderCapabilitiesField::class,
Commands\Teams\InitiallySetNotificationProviderTeamsTable::class,
Commands\Crm\AddLayoutEntities::class,
Commands\PropagateCoachingFeedbackCreatedAtToSectionFeedbacks::class,
Commands\JiminnyTokenInfoCommand::class,
Commands\JiminnySetEncryptedTokenManagerModeCommand::class,
Commands\EncryptTokensCommand::class,
Commands\Dialers\Aircall\CheckAndRenewWebhooks::class,
Commands\Migrate\MigrateTeamRegionCommand::class,
Commands\ManageScimForTeam::class,
Commands\Dialers\SyncUsersCommand::class,
Commands\WhichWorkerIsWorkingOnWhichJob::class,
Commands\GroupSetDefaultLanguageCommand::class,
Commands\Dev\AddRateLimitCommand::class,
Commands\Dev\ImportCallsCommand::class,
Commands\DealInsights\BuildDealInsightsLayoutCommand::class,
Commands\DealInsights\DeleteAskJiminnyDealPrompts::class,
Commands\Crm\MatchCrmObjectsCommand::class,
Commands\Activities\SetupIntegration\EightByEight::class,
Commands\Calendars\RemoveCalendarEventActivitiesCommand::class,
Commands\Activities\Migrator\MigrateFromGongCommand::class,
Commands\Activities\Migrator\MigrateFromChorusCommand::class,
Commands\Activities\Migrator\MigrateFromLeexiCommand::class,
Commands\Activities\Migrator\MigrateFromAvomaCommand::class,
Commands\Activities\Migrator\MigrateFromClariCommand::class,
Commands\Activities\SetupIntegration\ConnectAndSell::class,
Commands\Activities\SetupIntegration\CloudTalk::class,
Commands\Users\CreateConferenceSlug::class,
Commands\Elasticsearch\AsyncUpdateEsEntities::class,
Commands\Elasticsearch\ResetAsyncElasticSearchCommand::class,
Commands\Playlists\PlaylistSharesUpdateCommand::class,
Commands\Crm\AutologDelayedCommand::class,
Commands\Activities\HydrateDefaultActivityTypeCommand::class,
Commands\Crm\CheckActivityLoggableCommand::class,
Commands\Activities\MonitorDialerActivitiesCommand::class,
Commands\Activities\SetupIntegration\Xant::class,
Commands\ImportUsersFromCsvFile::class,
Commands\DevPostmanCommand::class,
Commands\Playlists\FixTreeStructureCommand::class,
Commands\Zoom\ResolvePmiLinksCommand::class,
Commands\MarkBranchForEnvironmentPipelineCommand::class,
Commands\Activities\ProbeMediaSegmentsCommand::class,
Commands\Activities\SetupIntegration\AmazonConnect::class,
Commands\Playbooks\ChangePlaybookActivityFieldCommand::class,
MediaPipelineRestartCommand::class,
Commands\Dev\FixHubSpotTokens::class,
Commands\Dev\MonitorSocialAccountsState::class,
Commands\Activities\SetupIntegration\Vonage::class,
Commands\Activities\SetupIntegration\TwilioFlex::class,
Commands\Activities\SetupIntegration\TwilioFlexDirect::class,
Commands\Activities\SetupIntegration\TwilioFlexSetDialerAuthCredentialsCommand::class,
Commands\Activities\SetupIntegration\TwilioSetS3RecordingCredentialsCommand::class,
SendActionItemsCommand::class,
Commands\Users\ChangeEmail::class,
Commands\Calendars\ListUserGoogleCalendars::class,
Commands\Activities\JustCall\SyncPlaybackLinkToCrmCommand::class,
Commands\Activities\HydrateCallWithCrmDataCommand::class,
Commands\Activities\UpdateActivityElasticSearchDocumentCommand::class,
Commands\Activities\SetupIntegration\Talkdesk::class,
Commands\Transcription\Microsoft\TranscriptionProviderMicrosoftWebhookRegisterCommand::class,
Commands\Transcription\Microsoft\TranscriptionProviderMicrosoftWebhookListCommand::class,
Commands\Transcription\Microsoft\TranscriptionProviderMicrosoftWebhookShow::class,
Commands\Transcription\Microsoft\TranscriptionProviderMicrosoftWebhookDeleteCommand::class,
Commands\Activities\SetupIntegration\TwilioVideo::class,
Commands\Crm\SetupCloseCrm::class,
Commands\Crm\SetupCopperCrm::class,
Commands\Crm\FullSyncOpportunityCommand::class,
Commands\Crm\IntegrationApp\CrmEntitiesFullSyncCommand::class,
Commands\Crm\IntegrationApp\ValidateConnectionCommand::class,
Commands\Activities\Workflow\RefreshCrmData::class,
Commands\Activities\Migrator\AnalyseGongCalls::class,
Commands\Users\AddVoiceRoleToRecorderCommand::class,
Commands\Activities\SyncMissingCallDispositions::class,
Commands\Calendars\RemoveFutureCalendarEvents::class,
FlushRolesPermissionsCache::class,
Commands\Activities\SetupIntegration\FiveNine::class,
CalendarEventDeleteCancelledCommand::class,
CalendarEventDeletePastCommand::class,
ReportActivityProcessingTimeToDatadogCommand::class,
ReportProcessingStatesToDatadogCommand::class,
ReleaseNumbersCommand::class,
BackfillOpportunityUserFromAccountCommand::class,
RemoveExpiredRoleChangeEventsCommand::class,
RemoveExpiredNudgesCommand::class,
SendNudgeExpirationWarningsCommand::class,
AutologOldActivitiesCommand::class,
RemoveUnusedParticipantSpeechesCommand::class,
DeleteActivitiesForChurnedTeamsCommand::class,
HardDeleteActivitiesForChurnedTeamsCommand::class,
TeamDeleteCommand::class,
TeamsDeleteDeactivatedCommand::class,
UpdateTeamsCommand::class,
OverrideTranscriptionLocaleCommand::class,
SyncSlackUserCommand::class,
PurgeSoftDeletedOpportunitiesCommand::class,
PurgeSyncBatchesCommand::class,
ProphetAnalyzeClosedDealsCommand::class,
DeleteChurnedSubAccounts::class,
Commands\ProphetAi\DumpContext::class,
DeletePredefinedSubAccounts::class,
DeleteActivitiesForRetentionTeamsCommand::class,
HardDeleteActivitiesTeamsCommand::class,
TeamsDeleteRetentionCommand::class,
TeamSettingPutCommand::class,
StopHangingLivestreamsCommand::class,
FixActivitiesOpportunity::class,
Commands\Activities\SetupIntegration\Salesforce\SetupSalesforceIntegrationCommand::class,
UpdateOldTranscriptionModelLocalesCommand::class,
Commands\Dev\FixMissMatchedCrmActivitiesCommand::class,
DownloadMissingTrackCommand::class,
ActivitiesMatchCrmCommand::class,
DeleteEmailDocumentsCommand::class,
DeleteOldTranscriptionsCommand::class,
DeleteS3LeftoversCommand::class,
RemoveDeleteMarkersCommand::class,
SyncTeamUsersCommand::class,
ReassignTranscriptCommand::class,
DiarizeViaAiParticipantIdentificationCommand::class,
RestoreActivityTypeCommand::class,
DeleteOldAiCrmNotesCommand::class,
DeleteReportCommand::class,
AutomatedReportsRetentionPolicyCommand::class,
SyncHubspotActiveDeals::class,
GenerateInternalWebhookToken::class,
IssueMcpTokenCommand::class,
RestoreActivityCrmProviderIdCommand::class,
CleanupActivityTracksCommand::class,
DeleteUnusedTracksCommand::class,
RestoreTracksCommand::class,
HubspotWebhookServiceCommand::class,
ProcessMergedObjectsCommand::class,
HubspotJournalPollingCommand::class,
SetupJournalDealWebhookSubscriptionsCommand::class,
ListJournalWebhookSubscriptionsCommand::class,
RemoveGhostParticipantsCommand::class,
AutodetectAiActivityTypeCommand::class,
Commands\Crm\LogActivitiesCommand::class,
Commands\Crm\MatchOpportunityActivitiesCommand::class,
PurgeDeletedOpportunitiesCommand::class,
CleanDuplicateFieldDataCommand::class,
RetryProspectSummaryCommand::class,
ProcessHubspotObjectsSyncBatches::class,
SyncOpportunitiesMissingFieldDataCommand::class,
RestoreDealAssociationsCommand::class,
];
private Schedule $schedule;
private string $output;
protected function schedule(Schedule $schedule): void
{
$this->schedule = $schedule;
$this->output = config('jiminny.scheduler_log');
$schedule->useCache('redis');
$currentMinute = (int) date('i');
$currentDay = (int) date('w');
$this->scheduleEveryMinute();
$this->scheduleEveryTwoMinutes();
$this->scheduleEveryFiveMinutes();
$this->scheduleEveryTenMinutes();
$this->scheduleEveryFifteenMinutes();
$this->scheduleEveryThirtyMinutes();
$this->scheduleHourly();
$this->scheduleDaily();
$this->scheduleWeekly($currentDay);
$this->scheduleSpecificTimes();
$this->scheduleDynamic($currentMinute);
}
protected function scheduleEveryMinute(): void
{
$this->scheduleCommand('meeting-bot:schedule-bot', expiresAt: 1)->everyMinute();
$this->scheduleCommand('dialers:monitor-activities')->everyMinute();
$this->scheduleCommand('jiminny:monitor-social-accounts')->everyMinute();
$this->scheduleCommand('mailbox:skip-lists:refresh')->everyMinute();
$this->schedule->command('mailbox:batch:process', ['--max-batches=15'])
->everyMinute()
->sendOutputTo($this->output);
}
protected function scheduleEveryTwoMinutes(): void
{
$this->scheduleCommand('conference:monitor:count', [], 2)->everyTwoMinutes();
}
protected function scheduleEveryFiveMinutes(): void
{
$this->scheduleCommand('activity:purge-stale', [], 4)->everyFiveMinutes();
// Offset by 1 minute to avoid overlap with crm:sync-objects (runs at :14 and :44)
$this->scheduleCommand('crm:sync-hubspot-objects', [], 4)
->cron('1,6,11,16,21,26,31,36,41,46,51,56 * * * *');
$this->scheduleCommand('mailbox:text-relay:sync')->everyFiveMinutes();
$this->scheduleCommand('conference:pre-meeting-notification', [], 3)->everyFiveMinutes();
$this->scheduleCommand('conference:monitor:start', expiresAt: 3)->everyFiveMinutes();
$this->scheduleCommand('conference:monitor:end', expiresAt: 3)->everyFiveMinutes();
$this->scheduleCommand('jiminny:fix-hubspot-tokens')->everyFiveMinutes();
$this->scheduleCommand('conference:pre-meeting-reminder')->everyFiveMinutes()->runInBackground();
$this->schedule->command('mailbox:batch:create')
->cron('2-59/5 * * * *')
->withoutOverlapping(180)
->onOneServer()
->sendOutputTo($this->output);
$this->schedule->command('mailbox:batch:retry-failed', ['--max-batches=15'])
->cron('3-59/5 * * * *')
->withoutOverlapping(180)
->onOneServer()
->sendOutputTo($this->output)
->runInBackground();
$this->schedule->command('hubspot:journal-poll', ['--start'])
->everyFiveMinutes()
->sendOutputTo($this->output)
->runInBackground();
}
protected function scheduleEveryTenMinutes(): void
{
$this->scheduleCommand('jiminny:transcription:retry-failed')->everyTenMinutes();
$this->scheduleCommand('activity:notify-not-logged')->cron('6,16,26,36,46,56 * * * *');
$this->scheduleCommand('activity:status-count')->cron('6,16,26,36,46,56 * * * *');
$this->scheduleCommand('mailbox:sync')->cron('6,16,26,36,46,56 * * * *');
$this->scheduleCommand('crm:reset-governor')->everyTenMinutes();
}
protected function scheduleEveryFifteenMinutes(): void
{
$this->scheduleCommand('datadog:report:processing-sla-activities')->everyFifteenMinutes();
$this->scheduleCommand('calendar:sync', ['--dateMode=daily'], 14)->cron('13,28,43,58 * * * *');
$this->scheduleCommand('activity:aircall:check-and-renew')->cron('9,24,39,54 * * * *');
$this->scheduleCommand('track:retry-failed-downloads')->cron('9,24,39,54 * * * *');
$this->scheduleCommand('crm:autolog-delayed')->cron('3,18,33,48 * * * *');
$this->scheduleCommand('activity:sync', [
'--from' => now()->subMinutes(16)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--skipProviders' => [
Activity::PROVIDER_RINGCENTRAL,
Activity::PROVIDER_AVAYA,
Activity::PROVIDER_TELUS,
Activity::PROVIDER_TALKDESK,
],
])->everyFifteenMinutes();
$this->scheduleCommand('activity:sync', [
Activity::PROVIDER_RINGCENTRAL,
Activity::PROVIDER_AVAYA,
Activity::PROVIDER_TELUS,
Activity::PROVIDER_TALKDESK,
'--from' => now()->subMinutes(16)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
])->cron('7,22,37,52 * * * *');
}
protected function scheduleEveryThirtyMinutes(): void
{
$this->scheduleCommand('crm:sync-objects')->cron('14,44 * * * *');
$this->scheduleCommand('mailbox:batch:fail-stalled')->everyThirtyMinutes();
$this->scheduleCommand('activities:delete-activities-for-deactivated-teams', expiresAt: 5)
->between('02:58', '05:29')
->everyThirtyMinutes()
->runInBackground();
$this->scheduleActivitiesHardDelete();
}
protected function scheduleHourly(): void
{
$this->scheduleCommand('jiminny:transcription:retry-stuck')->hourly();
$this->scheduleCommand('twilio:recover-tracks')->cron('22 * * * *');
$this->scheduleCommand('dialers:sync-users')->cron('22 * * * *');
$this->scheduleCommand('datadog:report:failed-processing-states')->cron('22 * * * *');
$this->scheduleCommand('automated-reports:send')->hourly();
$this->scheduleCommand('deal-insights:send-update')->hourlyAt(0);
$this->scheduleCommand('crm:integration-app-validate-team-connection')->hourlyAt(23);
}
protected function scheduleDaily(): void
{
$this->scheduleCommand('teams:sync-planhat')->daily();
$this->scheduleCommand('twilio:sync-addresses')->daily();
$this->scheduleCommand('twilio:sync-zone-access')->daily();
$this->scheduleCommand('mailbox:text-relay:watch-text-events')->daily();
$this->scheduleCommand('users:sync-licence-data')->daily();
$this->scheduleCommand('users:sync-intercom-data')->daily();
$this->scheduleCommand('nudges:send-expiration-warnings')->daily();
$this->scheduleCommand('nudges-data-clean-up', ['--deleteExpiredNudges'])->daily();
}
protected function scheduleWeekly(int $currentDay): void
{
if ($currentDay === 0) {
$this->scheduleCommand('crm:update-opp-specs')->weeklyOn(0);
}
if ($currentDay === 6) {
$this->scheduleCommand('jiminny:acl:remove-expired-role-change-events')->saturdays();
$this->scheduleCommand('activity:sync', [
Activity::PROVIDER_AMAZON_CONNECT,
'--from' => now()->subDays(7)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
])->saturdays()->at('01:00')->runInBackground();
$this->scheduleCommand('calendar:event:delete-past', ['--force'], 60)
->saturdays()->at('01:07')->runInBackground();
$this->scheduleCommand('calendar:event:delete-cancelled', ['--force'], 60 * 47 + 52)
->saturdays()->at('05:08')->runInBackground();
$this->scheduleCommand('nudges-data-clean-up --squashNudgeRuns')
->weeklyOn(6, '6:00');
$this->scheduleCommand('nudges-data-clean-up --pruneOldRuns --retentionDays=35')
->weeklyOn(6, '7:00');
}
}
protected function scheduleSpecificTimes(): void
{
$this->scheduleCommand('deal-risks:calculate', ['--cronjob'])->dailyAt('00:00');
$this->scheduleCommand(DeleteInboxEmailsCommand::NAME, [
'--status' => InboxEmail::STATUS_DISCARDED,
'--to' => now()->subWeeks(2)->format('Y-m-d'),
])->saturdays()->at('00:20')->runInBackground();
$this->scheduleCommand(DeleteInboxEmailsCommand::NAME, [
'--status' => InboxEmail::STATUS_PROCESSED,
'--to' => now()->subWeeks(2)->format('Y-m-d'),
])->saturdays()->at('00:30')->runInBackground();
$this->scheduleCommand('automated-reports')->dailyAt('01:00');
$this->scheduleCommand('crm:sync-team-metadata')->dailyAt('01:05');
$this->scheduleCommand('crm:sync-profile-metadata')->dailyAt('01:05');
$this->scheduleCommand('calendar:sync-deleted-events')->dailyAt('01:10');
$this->scheduleCommand('teams:delete-retention')->dailyAt('02:55');
$this->scheduleCommand('teams:delete-deactivated')->dailyAt('02:58');
$this->scheduleCommand('twilio:remote-lifecycle')->dailyAt('03:00');
$this->scheduleCommand('activity:sync', [
Activity::PROVIDER_VONAGE,
Activity::PROVIDER_FIVE_NINE,
'--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
])->dailyAt('03:05');
$this->scheduleCommand('activities:delete-retention-teams', expiresAt: 240)->dailyAt('03:04');
$this->scheduleCommand('automated-reports:run-retention-policy', expiresAt: 120)->dailyAt('03:15');
$this->scheduleCommand('stop:hanging:livestreams')->dailyAt('03:30');
$this->scheduleCommand('crm:purge-sync-batches')->dailyAt('03:45');
$this->scheduleCommand('twilio:sync-numbers')->dailyAt('04:00');
if (! $this->app->environment('production')) {
$this->scheduleCommand('activities:hard-delete', ['--limit' => 1000, '--jobs' => 5], 60)
->dailyAt('04:02')->runInBackground();
}
$this->scheduleCommand('crm:full-sync-opportunity')->dailyAt('05:00');
$this->scheduleCommand('activity:sync', [
'--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--skipProviders' => [
Activity::PROVIDER_VONAGE,
Activity::PROVIDER_FIVE_NINE,
],
])->dailyAt('05:05');
if (! $this->app->environment('qa')) {
$this->scheduleCommand('ai-crm-notes:delete-old')->dailyAt('07:00');
}
$this->scheduleCommand('activity:sync-dispositions', [
Activity::PROVIDER_HUBSPOT,
'--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
])->dailyAt('07:05');
}
protected function scheduleDynamic(int $currentMinute): void
{
$this->scheduleHourlyFallbackActivitySyncs($currentMinute);
$this->scheduleBullhornHeartbeat($currentMinute);
}
private function scheduleHourlyFallbackActivitySyncs(int $offsetMinute): void
{
if ($offsetMinute === 0) {
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUD_TALK, 3, 0);
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_VONAGE, 6, 0);
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUDCALL, 3, 0);
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUDCALL_US, 3, 0);
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_FIVE_NINE, 3, 0);
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_HUBSPOT, 1, 0);
} elseif ($offsetMinute === 1) {
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_RINGCENTRAL, Constants::RINGCENTRAL_CALL_LOG_LOOK_BACK_HOURS, 1);
} elseif ($offsetMinute === 2) {
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_AVAYA, Constants::RINGCENTRAL_CALL_LOG_LOOK_BACK_HOURS, 2);
}
}
private function scheduleBullhornHeartbeat(int $currentMinute): void
{
$bhHeartbeatInterval = config('services.bullhorn.heartbeatInterval', 0);
if ($bhHeartbeatInterval > 0) {
$minutes = max((int) floor($bhHeartbeatInterval / 60), 1);
if ($currentMinute % $minutes === 0) {
$bhEvent = $this->scheduleCommand('crm:bullhorn:ping', ['--heartbeat']);
if ($minutes > 30) {
$bhEvent->hourly();
} else {
$bhEvent->cron(sprintf('*/%d * * * *', $minutes));
}
}
}
}
private function scheduleActivitiesHardDelete(): void
{
if (config(key: 'jiminny.deploy_region') === 'eu') {
$this->scheduleCommand(
name: 'activities:hard-delete',
options: ['--limit' => 1000, '--jobs' => 20],
expiresAt: 29
)
->between('02:59', '07:02')->everyThirtyMinutes()
->runInBackground();
} elseif ($this->app->environment('production')) {
$this->scheduleCommand(
name: 'activities:hard-delete',
options: ['--limit' => 2000, '--jobs' => 20],
expiresAt: 29
)
->between('02:59', '07:02')->everyThirtyMinutes()
->runInBackground();
}
}
private function scheduleHourlyFallbackActivitySync(string $provider, int $hours, int $offsetMinute = 0): void
{
$this->scheduleCommand('activity:sync', [
$provider,
'--from' => now()->subHours($hours)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
])->hourlyAt($offsetMinute);
}
/**
* Register the Closure based commands for the application.
*/
protected function commands(): void
{
require_once base_path('routes/console.php');
}
private function scheduleCommand(string $name, array $options = [], $expiresAt = 60 * 3): Event
{
return $this->schedule
->command($name, $options)
->withoutOverlapping($expiresAt)
->onOneServer()
->sendOutputTo($this->output)
;
}
}
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"master, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.034242023,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: master","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2","depth":4,"bounds":{"left":0.3480718,"top":0.10055866,"width":0.007978723,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.35771278,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.3650266,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<template>\n <AppDrawerModal v-bind=\"drawerAttrs\" #default=\"{ $style: drawerStyle }\">\n <div :class=\"drawerStyle.formGrid\">\n <div :class=\"drawerStyle.sectionTitle\">General</div>\n <!-- Name -->\n <AppFormField\n field-label=\"Company name\"\n v-model=\"formState.name\"\n :required=\"true\"\n name=\"name\"\n rules=\"required\"\n data-testid=\"setup-trial-name\"\n />\n\n <!-- Owner Email -->\n <AppFormField\n v-if=\"!flags.ownerCreated\"\n type=\"email\"\n field-label=\"Owner Email\"\n v-model=\"formState.owner_email\"\n :required=\"true\"\n name=\"owner_email\"\n rules=\"required|email\"\n data-testid=\"setup-trial-owner-email\"\n />\n <AppFormField\n v-else\n field-label=\"Owner\"\n name=\"owner_id\"\n :required=\"true\"\n rules=\"required\"\n v-model=\"formState.owner_id\"\n :options=\"formData.admins.data || []\"\n :loading=\"formData.admins.loading\"\n type=\"select\"\n option-label=\"name\"\n track-by=\"id\"\n data-testid=\"setup-trial-owner-email\"\n />\n\n <!-- CRM -->\n <AppFormField\n v-model=\"formState.crm\"\n name=\"crm\"\n type=\"select\"\n field-label=\"CRM\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.crmOptions.data || []\"\n track-by=\"id\"\n option-label=\"label\"\n :loading=\"formData.crmOptions.loading\"\n data-testid=\"setup-trial-crm\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->\n <AppFormField\n v-if=\"flags.teamCreated && formData.partners.data?.length > 1\"\n v-model=\"formState.partner_id\"\n name=\"partner_id\"\n type=\"select\"\n field-label=\"Partner\"\n :options=\"formData.partners.data || []\"\n track-by=\"id\"\n option-label=\"name\"\n :loading=\"formData.partners.loading\"\n data-testid=\"setup-trial-partner\"\n />\n\n <!-- Opportunity Sync Period -->\n <AppFormField\n :disabled=\"!requireSyncPeriod\"\n v-model=\"formState.opportunity_sync_period\"\n name=\"opportunity_sync_period\"\n type=\"select\"\n field-label=\"Import Opportunities Sync Period\"\n :required=\"requireSyncPeriod\"\n :rules=\"requireSyncPeriod ? 'required' : ''\"\n :options=\"syncPeriodOptions\"\n track-by=\"id\"\n option-label=\"label\"\n data-testid=\"setup-trial-sync-period\"\n />\n\n <!-- Calendar -->\n <AppFormField\n v-model=\"formState.calendar\"\n name=\"calendar\"\n type=\"radios\"\n ui=\"radios\"\n field-label=\"Calendar\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.calendarOptions.data || []\"\n data-testid=\"setup-trial-calendar\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Softphone -->\n <div>\n <div :class=\"[$style.fieldLabel, drawerStyle.fieldLabel]\">\n Softphone\n </div>\n <AppFormField\n v-model=\"formState.features\"\n name=\"softphone\"\n type=\"checkbox\"\n :value=\"SOFTPHONE_FEATURE_ID\"\n :field-label=\"jiminnyVoiceLabel\"\n data-testid=\"setup-trial-softphone\"\n />\n </div>\n\n <EditTeamAddressFields\n v-if=\"softphoneEnabled\"\n :disabled=\"flags.billingDisabled\"\n />\n\n </div>\n <div :class=\"$style.tearsGrid\">\n <div :class=\"$style.sectionTitle\">\n <div :class=\"drawerStyle.sectionTitle\">Tiers & Add-ons</div>\n <AppButton\n icon=\"question\"\n label=\"Tiers explained\"\n mods=\"seamless link primary\"\n href=\"https://jiminny.atlassian.net/wiki/external/OGRhNWI0NzJjZTc0NDg1YTg5MTU4NGYwZWU3NTc2OGM\"\n :class=\"$style.docsRef\"\n />\n </div>\n <ErrorMessage name=\"tier_id\">\n <div :class=\"$style.errorMessage\">Selecting tier is required</div>\n </ErrorMessage>\n <FeaturesGroup\n v-for=\"group in featuresGroups\"\n :key=\"group.tier?.id || group.type\"\n v-bind=\"{ group, tiers: formData.features.data.tiers }\"\n v-model:tier=\"tierModel\"\n v-model:features=\"formState.features\"\n />\n <template\n v-if=\"\n flags.teamCreated &&\n formData.features.data?.features.byType.DEV?.length\n \"\n >\n <div :class=\"[$style.sectionTitle, drawerStyle.sectionTitle]\">\n Technical Settings\n </div>\n <FeaturesList\n v-model=\"formState.features\"\n :features=\"formData.features.data.features.byType.DEV\"\n />\n </template>\n </div>\n </AppDrawerModal>\n</template>\n<script>\nconst SOFTPHONE_FEATURE_ID = \"DIALER\";\n\n// Options for opportunity sync period\nconst syncPeriodOptions = [\n { id: \"3m\", label: \"3 Months\" },\n { id: \"6m\", label: \"6 Months\" },\n { id: \"12m\", label: \"12 Months\" },\n];\n\nconst DEFAULT_OPPORTUNITY_SYNC_PERIOD = syncPeriodOptions[0].id;\n\nexport const useEditTeamForm = toSelfProvidingHook((data) => {\n const formState = ref({\n features: [],\n ...data,\n });\n\n const formStateSnapshot = ref();\n\n updateSnapshot();\n\n const hasChanges = computed(\n () => !isEqual(formState.value, formStateSnapshot.value),\n );\n\n const softphoneEnabled = computed(() =>\n unref(formState).features?.includes(SOFTPHONE_FEATURE_ID),\n );\n\n function exportFormState() {\n const excluded = [\"softphone\"];\n\n if (!unref(softphoneEnabled)) {\n excluded.push(\"address\", \"city\", \"state\", \"zip\", \"country\");\n }\n\n return omit(formState.value, excluded);\n }\n\n function updateSnapshot() {\n formStateSnapshot.value = cloneDeep(formState.value);\n }\n\n return {\n formState,\n updateSnapshot,\n hasChanges,\n exportFormState,\n softphoneEnabled,\n };\n});\n\n// Data loading functions\nasync function getCalendars() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/calendars\"));\n\n if (!error) return data.data.map(({ id, label }) => ({ value: id, label }));\n\n console.error(error);\n throw new Error(\"Error loading calendars\");\n}\n\nasync function getCrmServices() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/crm-services\"));\n if (!error) return Object.values(data.data);\n\n console.error(error);\n throw new Error(\"Error loading CRM services\");\n}\n\nasync function getPartners() {\n const { error, data } = await tryCatch(\n axios.get(\"/api/v1/kiosk/partners\"),\n );\n if (!error) return data.data.data;\n\n console.error(error);\n throw new Error(\"Error loading partners\");\n}\n\nasync function fetchUsersData(teamId) {\n const { data, status } = await axios.get(\n `/api/v1/kiosk/organizations/${teamId}/users`,\n );\n\n if (status === 200) {\n return data;\n } else {\n throw new Error(\"Error in fetching users data\");\n }\n}\n</script>\n<script setup>\nimport { computed, ref, reactive, watch, unref } from \"vue\";\nimport axios from \"axios\";\nimport { cloneDeep, isEqual, omit } from \"lodash-es\";\nimport { modalDiscardGuard, toSelfProvidingHook, tryCatch } from \"@/utils\";\nimport useAppForm, {\n SilentFormError,\n} from \"@/components/shared/AppFormElements/useAppForm\";\nimport AppForm from \"@/components/shared/AppFormElements/AppForm.vue\";\nimport AppFormField from \"@/components/shared/AppFormElements/AppFormField.vue\";\nimport useAsyncData from \"@/composables/useAsyncData\";\nimport EditTeamAddressFields from \"./EditTeamAddressFields.vue\";\nimport AppDrawerModal from \"@/components/shared/modals/AppDrawerModal.vue\";\nimport { useDrawerModal } from \"@/composables/useDrawerModal\";\nimport { promptModal } from \"jenesius-vue-modal\";\nimport ChangeOwnerConfirmModal from \"@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue\";\nimport EventBus from \"@/utils/event-bus\";\nimport { getFeaturesData } from \"./features\";\nimport FeaturesGroup from \"./FeaturesGroup.vue\";\nimport FeaturesList from \"./FeaturesList.vue\";\nimport { ErrorMessage, useField } from \"vee-validate\";\nimport AppButton from \"@/components/shared/Buttons/AppButton.vue\";\nimport { useBrandedI18n } from \"@/composables/useBrandedI18n\";\n\n// Define props\nconst props = defineProps({\n data: {\n type: Object,\n required: true,\n },\n teamId: String,\n});\n\nconst { tb } = useBrandedI18n();\n\n// Branded i18n computed ref\nconst jiminnyVoiceLabel = tb(\"kiosk.edit-team.jiminny-voice--whitelabel\");\n\nconst flags = reactive({\n teamCreated: computed(() => !!props.data.id),\n ownerCreated: computed(() => !!props.data.owner_id),\n billingDisabled: computed(\n () =>\n !!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),\n ),\n});\n\n// Setup form\nconst form = useAppForm({\n onSubmit,\n toastSuccess: flags.teamCreated\n ? \"Account updated successfully!\"\n : \"Account created successfully!\",\n});\n\n// Setup form state with initial values\nconst {\n formState,\n hasChanges,\n updateSnapshot,\n exportFormState,\n softphoneEnabled,\n} = useEditTeamForm(props.data);\n\n// Load required data\nconst formData = reactive({\n calendarOptions: useAsyncData(getCalendars, { showError: true }),\n crmOptions: useAsyncData(getCrmServices, { showError: true }),\n features: useAsyncData(getFeaturesData, { showError: true }),\n partners: useAsyncData(getPartners, { showError: true }),\n admins: reactive(useAdminsList()),\n});\n\nconst { close } = useDrawerModal({ onClose });\n\nconst { tierModel, featuresGroups } = useFeaturesManager();\n\nconst { requireSyncPeriod } = useRequireSyncPeriod();\n\nconst drawerAttrs = computed(() => ({\n as: AppForm,\n title: flags.teamCreated ? \"Edit Organization\" : \"Setup Account\",\n headerButtons: [\n {\n type: \"submit\",\n label: \"Save\",\n variant: \"primary\",\n \"data-testid\": \"setup-trial-submit\",\n disabled: !unref(hasChanges),\n },\n ],\n contentAttrs: {\n busy: Object.values(formData).some(({ loading }) => loading),\n },\n}));\n\nfunction onClose() {\n return modalDiscardGuard({\n onSave: form.submitHandler,\n hasChanges: unref(hasChanges),\n });\n}\n\nasync function onSubmit() {\n const ownerChanged =\n flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;\n\n if (ownerChanged) {\n const confirmed = await promptModal(ChangeOwnerConfirmModal);\n if (!confirmed) throw new SilentFormError(\"Owner change not confirmed\");\n }\n\n const data = exportFormState();\n\n // create or update the team\n !flags.teamCreated\n ? await axios.post(\"/api/v1/settings/organizations\", data)\n : await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);\n\n EventBus.$emit(\"team.updated\");\n\n // update form snapshot\n updateSnapshot();\n close();\n}\n\nfunction useFeaturesManager() {\n const tierField = useField(\"tier_id\", \"required\", {\n initialValue: unref(formState).tier_id,\n });\n\n const tierModel = computed({\n get() {\n return unref(formState).tier_id;\n },\n set(tierId) {\n setTier(tierId);\n tierField.value.value = tierId;\n },\n });\n\n const featuresGroups = computed(() => {\n const { groups } = formData.features.data || {};\n\n if (!groups) return [];\n\n return [groups.TIER, groups[\"ADD_ON\"]].filter(Boolean).flat();\n });\n\n function setTier(tierId) {\n const selectedFeatures = new Set(unref(formState).features);\n const { features, tiers } = formData.features.data;\n\n // clear all tier features\n features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));\n\n const tier = tiers.find((tier) => tier.id === tierId);\n\n // select only selected tiers features\n [...tier.inherits, tierId]\n .map((tierId) => features.byTier[tierId] || [])\n .flat()\n .forEach((feature) => selectedFeatures.add(feature.id));\n\n Object.assign(unref(formState), {\n features: Array.from(selectedFeatures),\n tier_id: tierId,\n });\n }\n\n return { tierModel, setTier, featuresGroups };\n}\n\nfunction useRequireSyncPeriod() {\n // Computed property to check if opportunity sync period is required\n const requireSyncPeriod = computed(() => {\n return !!formData.crmOptions.data?.find(\n (item) => formState.value.crm === item.id,\n )?.requireInitialSyncPeriod;\n });\n\n watch(requireSyncPeriod, (required) => {\n formState.value.opportunity_sync_period = required\n ? formState.value.opportunity_sync_period ||\n DEFAULT_OPPORTUNITY_SYNC_PERIOD\n : null;\n });\n\n return { requireSyncPeriod };\n}\n\nfunction useAdminsList() {\n return useAsyncData(async () => {\n const data = await fetchUsersData(props.data.id);\n\n return data.filter((user) => user.roles?.some((e) => e.name == \"admin\"));\n });\n}\n</script>\n\n<style lang=\"less\" module>\n.fieldLabel:has(~ * :disabled) {\n opacity: 0.6;\n}\n.tearsGrid {\n display: grid;\n padding-top: 10px;\n gap: 10px;\n .sectionTitle {\n margin-top: 30px;\n display: flex;\n justify-content: space-between;\n }\n}\n.errorMessage {\n color: var(--color-danger);\n}\n.docsRef {\n font-size: 14px;\n}\n</style>","depth":4,"bounds":{"left":0.15990691,"top":0.09736632,"width":0.3081782,"height":0.90263367},"on_screen":true,"value":"<template>\n <AppDrawerModal v-bind=\"drawerAttrs\" #default=\"{ $style: drawerStyle }\">\n <div :class=\"drawerStyle.formGrid\">\n <div :class=\"drawerStyle.sectionTitle\">General</div>\n <!-- Name -->\n <AppFormField\n field-label=\"Company name\"\n v-model=\"formState.name\"\n :required=\"true\"\n name=\"name\"\n rules=\"required\"\n data-testid=\"setup-trial-name\"\n />\n\n <!-- Owner Email -->\n <AppFormField\n v-if=\"!flags.ownerCreated\"\n type=\"email\"\n field-label=\"Owner Email\"\n v-model=\"formState.owner_email\"\n :required=\"true\"\n name=\"owner_email\"\n rules=\"required|email\"\n data-testid=\"setup-trial-owner-email\"\n />\n <AppFormField\n v-else\n field-label=\"Owner\"\n name=\"owner_id\"\n :required=\"true\"\n rules=\"required\"\n v-model=\"formState.owner_id\"\n :options=\"formData.admins.data || []\"\n :loading=\"formData.admins.loading\"\n type=\"select\"\n option-label=\"name\"\n track-by=\"id\"\n data-testid=\"setup-trial-owner-email\"\n />\n\n <!-- CRM -->\n <AppFormField\n v-model=\"formState.crm\"\n name=\"crm\"\n type=\"select\"\n field-label=\"CRM\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.crmOptions.data || []\"\n track-by=\"id\"\n option-label=\"label\"\n :loading=\"formData.crmOptions.loading\"\n data-testid=\"setup-trial-crm\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->\n <AppFormField\n v-if=\"flags.teamCreated && formData.partners.data?.length > 1\"\n v-model=\"formState.partner_id\"\n name=\"partner_id\"\n type=\"select\"\n field-label=\"Partner\"\n :options=\"formData.partners.data || []\"\n track-by=\"id\"\n option-label=\"name\"\n :loading=\"formData.partners.loading\"\n data-testid=\"setup-trial-partner\"\n />\n\n <!-- Opportunity Sync Period -->\n <AppFormField\n :disabled=\"!requireSyncPeriod\"\n v-model=\"formState.opportunity_sync_period\"\n name=\"opportunity_sync_period\"\n type=\"select\"\n field-label=\"Import Opportunities Sync Period\"\n :required=\"requireSyncPeriod\"\n :rules=\"requireSyncPeriod ? 'required' : ''\"\n :options=\"syncPeriodOptions\"\n track-by=\"id\"\n option-label=\"label\"\n data-testid=\"setup-trial-sync-period\"\n />\n\n <!-- Calendar -->\n <AppFormField\n v-model=\"formState.calendar\"\n name=\"calendar\"\n type=\"radios\"\n ui=\"radios\"\n field-label=\"Calendar\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.calendarOptions.data || []\"\n data-testid=\"setup-trial-calendar\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Softphone -->\n <div>\n <div :class=\"[$style.fieldLabel, drawerStyle.fieldLabel]\">\n Softphone\n </div>\n <AppFormField\n v-model=\"formState.features\"\n name=\"softphone\"\n type=\"checkbox\"\n :value=\"SOFTPHONE_FEATURE_ID\"\n :field-label=\"jiminnyVoiceLabel\"\n data-testid=\"setup-trial-softphone\"\n />\n </div>\n\n <EditTeamAddressFields\n v-if=\"softphoneEnabled\"\n :disabled=\"flags.billingDisabled\"\n />\n\n </div>\n <div :class=\"$style.tearsGrid\">\n <div :class=\"$style.sectionTitle\">\n <div :class=\"drawerStyle.sectionTitle\">Tiers & Add-ons</div>\n <AppButton\n icon=\"question\"\n label=\"Tiers explained\"\n mods=\"seamless link primary\"\n href=\"https://jiminny.atlassian.net/wiki/external/OGRhNWI0NzJjZTc0NDg1YTg5MTU4NGYwZWU3NTc2OGM\"\n :class=\"$style.docsRef\"\n />\n </div>\n <ErrorMessage name=\"tier_id\">\n <div :class=\"$style.errorMessage\">Selecting tier is required</div>\n </ErrorMessage>\n <FeaturesGroup\n v-for=\"group in featuresGroups\"\n :key=\"group.tier?.id || group.type\"\n v-bind=\"{ group, tiers: formData.features.data.tiers }\"\n v-model:tier=\"tierModel\"\n v-model:features=\"formState.features\"\n />\n <template\n v-if=\"\n flags.teamCreated &&\n formData.features.data?.features.byType.DEV?.length\n \"\n >\n <div :class=\"[$style.sectionTitle, drawerStyle.sectionTitle]\">\n Technical Settings\n </div>\n <FeaturesList\n v-model=\"formState.features\"\n :features=\"formData.features.data.features.byType.DEV\"\n />\n </template>\n </div>\n </AppDrawerModal>\n</template>\n<script>\nconst SOFTPHONE_FEATURE_ID = \"DIALER\";\n\n// Options for opportunity sync period\nconst syncPeriodOptions = [\n { id: \"3m\", label: \"3 Months\" },\n { id: \"6m\", label: \"6 Months\" },\n { id: \"12m\", label: \"12 Months\" },\n];\n\nconst DEFAULT_OPPORTUNITY_SYNC_PERIOD = syncPeriodOptions[0].id;\n\nexport const useEditTeamForm = toSelfProvidingHook((data) => {\n const formState = ref({\n features: [],\n ...data,\n });\n\n const formStateSnapshot = ref();\n\n updateSnapshot();\n\n const hasChanges = computed(\n () => !isEqual(formState.value, formStateSnapshot.value),\n );\n\n const softphoneEnabled = computed(() =>\n unref(formState).features?.includes(SOFTPHONE_FEATURE_ID),\n );\n\n function exportFormState() {\n const excluded = [\"softphone\"];\n\n if (!unref(softphoneEnabled)) {\n excluded.push(\"address\", \"city\", \"state\", \"zip\", \"country\");\n }\n\n return omit(formState.value, excluded);\n }\n\n function updateSnapshot() {\n formStateSnapshot.value = cloneDeep(formState.value);\n }\n\n return {\n formState,\n updateSnapshot,\n hasChanges,\n exportFormState,\n softphoneEnabled,\n };\n});\n\n// Data loading functions\nasync function getCalendars() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/calendars\"));\n\n if (!error) return data.data.map(({ id, label }) => ({ value: id, label }));\n\n console.error(error);\n throw new Error(\"Error loading calendars\");\n}\n\nasync function getCrmServices() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/crm-services\"));\n if (!error) return Object.values(data.data);\n\n console.error(error);\n throw new Error(\"Error loading CRM services\");\n}\n\nasync function getPartners() {\n const { error, data } = await tryCatch(\n axios.get(\"/api/v1/kiosk/partners\"),\n );\n if (!error) return data.data.data;\n\n console.error(error);\n throw new Error(\"Error loading partners\");\n}\n\nasync function fetchUsersData(teamId) {\n const { data, status } = await axios.get(\n `/api/v1/kiosk/organizations/${teamId}/users`,\n );\n\n if (status === 200) {\n return data;\n } else {\n throw new Error(\"Error in fetching users data\");\n }\n}\n</script>\n<script setup>\nimport { computed, ref, reactive, watch, unref } from \"vue\";\nimport axios from \"axios\";\nimport { cloneDeep, isEqual, omit } from \"lodash-es\";\nimport { modalDiscardGuard, toSelfProvidingHook, tryCatch } from \"@/utils\";\nimport useAppForm, {\n SilentFormError,\n} from \"@/components/shared/AppFormElements/useAppForm\";\nimport AppForm from \"@/components/shared/AppFormElements/AppForm.vue\";\nimport AppFormField from \"@/components/shared/AppFormElements/AppFormField.vue\";\nimport useAsyncData from \"@/composables/useAsyncData\";\nimport EditTeamAddressFields from \"./EditTeamAddressFields.vue\";\nimport AppDrawerModal from \"@/components/shared/modals/AppDrawerModal.vue\";\nimport { useDrawerModal } from \"@/composables/useDrawerModal\";\nimport { promptModal } from \"jenesius-vue-modal\";\nimport ChangeOwnerConfirmModal from \"@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue\";\nimport EventBus from \"@/utils/event-bus\";\nimport { getFeaturesData } from \"./features\";\nimport FeaturesGroup from \"./FeaturesGroup.vue\";\nimport FeaturesList from \"./FeaturesList.vue\";\nimport { ErrorMessage, useField } from \"vee-validate\";\nimport AppButton from \"@/components/shared/Buttons/AppButton.vue\";\nimport { useBrandedI18n } from \"@/composables/useBrandedI18n\";\n\n// Define props\nconst props = defineProps({\n data: {\n type: Object,\n required: true,\n },\n teamId: String,\n});\n\nconst { tb } = useBrandedI18n();\n\n// Branded i18n computed ref\nconst jiminnyVoiceLabel = tb(\"kiosk.edit-team.jiminny-voice--whitelabel\");\n\nconst flags = reactive({\n teamCreated: computed(() => !!props.data.id),\n ownerCreated: computed(() => !!props.data.owner_id),\n billingDisabled: computed(\n () =>\n !!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),\n ),\n});\n\n// Setup form\nconst form = useAppForm({\n onSubmit,\n toastSuccess: flags.teamCreated\n ? \"Account updated successfully!\"\n : \"Account created successfully!\",\n});\n\n// Setup form state with initial values\nconst {\n formState,\n hasChanges,\n updateSnapshot,\n exportFormState,\n softphoneEnabled,\n} = useEditTeamForm(props.data);\n\n// Load required data\nconst formData = reactive({\n calendarOptions: useAsyncData(getCalendars, { showError: true }),\n crmOptions: useAsyncData(getCrmServices, { showError: true }),\n features: useAsyncData(getFeaturesData, { showError: true }),\n partners: useAsyncData(getPartners, { showError: true }),\n admins: reactive(useAdminsList()),\n});\n\nconst { close } = useDrawerModal({ onClose });\n\nconst { tierModel, featuresGroups } = useFeaturesManager();\n\nconst { requireSyncPeriod } = useRequireSyncPeriod();\n\nconst drawerAttrs = computed(() => ({\n as: AppForm,\n title: flags.teamCreated ? \"Edit Organization\" : \"Setup Account\",\n headerButtons: [\n {\n type: \"submit\",\n label: \"Save\",\n variant: \"primary\",\n \"data-testid\": \"setup-trial-submit\",\n disabled: !unref(hasChanges),\n },\n ],\n contentAttrs: {\n busy: Object.values(formData).some(({ loading }) => loading),\n },\n}));\n\nfunction onClose() {\n return modalDiscardGuard({\n onSave: form.submitHandler,\n hasChanges: unref(hasChanges),\n });\n}\n\nasync function onSubmit() {\n const ownerChanged =\n flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;\n\n if (ownerChanged) {\n const confirmed = await promptModal(ChangeOwnerConfirmModal);\n if (!confirmed) throw new SilentFormError(\"Owner change not confirmed\");\n }\n\n const data = exportFormState();\n\n // create or update the team\n !flags.teamCreated\n ? await axios.post(\"/api/v1/settings/organizations\", data)\n : await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);\n\n EventBus.$emit(\"team.updated\");\n\n // update form snapshot\n updateSnapshot();\n close();\n}\n\nfunction useFeaturesManager() {\n const tierField = useField(\"tier_id\", \"required\", {\n initialValue: unref(formState).tier_id,\n });\n\n const tierModel = computed({\n get() {\n return unref(formState).tier_id;\n },\n set(tierId) {\n setTier(tierId);\n tierField.value.value = tierId;\n },\n });\n\n const featuresGroups = computed(() => {\n const { groups } = formData.features.data || {};\n\n if (!groups) return [];\n\n return [groups.TIER, groups[\"ADD_ON\"]].filter(Boolean).flat();\n });\n\n function setTier(tierId) {\n const selectedFeatures = new Set(unref(formState).features);\n const { features, tiers } = formData.features.data;\n\n // clear all tier features\n features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));\n\n const tier = tiers.find((tier) => tier.id === tierId);\n\n // select only selected tiers features\n [...tier.inherits, tierId]\n .map((tierId) => features.byTier[tierId] || [])\n .flat()\n .forEach((feature) => selectedFeatures.add(feature.id));\n\n Object.assign(unref(formState), {\n features: Array.from(selectedFeatures),\n tier_id: tierId,\n });\n }\n\n return { tierModel, setTier, featuresGroups };\n}\n\nfunction useRequireSyncPeriod() {\n // Computed property to check if opportunity sync period is required\n const requireSyncPeriod = computed(() => {\n return !!formData.crmOptions.data?.find(\n (item) => formState.value.crm === item.id,\n )?.requireInitialSyncPeriod;\n });\n\n watch(requireSyncPeriod, (required) => {\n formState.value.opportunity_sync_period = required\n ? formState.value.opportunity_sync_period ||\n DEFAULT_OPPORTUNITY_SYNC_PERIOD\n : null;\n });\n\n return { requireSyncPeriod };\n}\n\nfunction useAdminsList() {\n return useAsyncData(async () => {\n const data = await fetchUsersData(props.data.id);\n\n return data.filter((user) => user.roles?.some((e) => e.name == \"admin\"));\n });\n}\n</script>\n\n<style lang=\"less\" module>\n.fieldLabel:has(~ * :disabled) {\n opacity: 0.6;\n}\n.tearsGrid {\n display: grid;\n padding-top: 10px;\n gap: 10px;\n .sectionTitle {\n margin-top: 30px;\n display: flex;\n justify-content: space-between;\n }\n}\n.errorMessage {\n color: var(--color-danger);\n}\n.docsRef {\n font-size: 14px;\n}\n</style>","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"6","depth":4,"bounds":{"left":0.5880984,"top":0.10055866,"width":0.007978723,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.5980718,"top":0.10055866,"width":0.00930851,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6090425,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.6163564,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\nnamespace Jiminny\\Console;\n\nuse Illuminate\\Console\\ConfirmableTrait;\nuse Illuminate\\Console\\Scheduling\\Event;\nuse Illuminate\\Console\\Scheduling\\Schedule;\nuse Illuminate\\Foundation\\Console\\Kernel as ConsoleKernel;\nuse Jiminny\\Component\\Acl\\RemoveExpiredRoleChangeEventsCommand;\nuse Jiminny\\Component\\ActionItems\\Commands\\SendActionItemsCommand;\nuse Jiminny\\Component\\AiActivityType\\Commands\\AutodetectAiActivityTypeCommand;\nuse Jiminny\\Component\\AskJiminnyAi\\Commands\\ProphetAnalyzeClosedDealsCommand;\nuse Jiminny\\Component\\Cache\\Constants;\nuse Jiminny\\Component\\DealInsights\\Commands\\SendDealsUpdateCommand;\nuse Jiminny\\Component\\MediaPipeline\\Command\\MediaPipelineRestartCommand;\nuse Jiminny\\Component\\MediaPipeline\\Command\\ReportActivityProcessingTimeToDatadogCommand;\nuse Jiminny\\Component\\MediaPipeline\\Command\\ReportProcessingStatesToDatadogCommand;\nuse Jiminny\\Component\\Transcription\\Commands\\OverrideTranscriptionLocaleCommand;\nuse Jiminny\\Component\\Transcription\\Commands\\RetryFailedTranscriptionsCommand;\nuse Jiminny\\Component\\Transcription\\Commands\\RetryStuckTranscriptionsCommand;\nuse Jiminny\\Console\\Commands\\Activities\\ActivitiesMatchCrmCommand;\nuse Jiminny\\Console\\Commands\\Activities\\AutologOldActivitiesCommand;\nuse Jiminny\\Console\\Commands\\Activities\\DeleteActivitiesForChurnedTeamsCommand;\nuse Jiminny\\Console\\Commands\\Activities\\DeleteActivitiesForRetentionTeamsCommand;\nuse Jiminny\\Console\\Commands\\Activities\\DownloadMissingTrackCommand;\nuse Jiminny\\Console\\Commands\\Activities\\FixActivitiesOpportunity;\nuse Jiminny\\Console\\Commands\\Activities\\HardDeleteActivitiesForChurnedTeamsCommand;\nuse Jiminny\\Console\\Commands\\Activities\\HardDeleteActivitiesTeamsCommand;\nuse Jiminny\\Console\\Commands\\Activities\\ReassignTranscriptCommand;\nuse Jiminny\\Console\\Commands\\Activities\\ReindexRecentActivitiesCommand;\nuse Jiminny\\Console\\Commands\\Activities\\RetryProspectSummaryCommand;\nuse Jiminny\\Console\\Commands\\Calendars\\Events\\CalendarEventDeleteCancelledCommand;\nuse Jiminny\\Console\\Commands\\Calendars\\Events\\CalendarEventDeletePastCommand;\nuse Jiminny\\Console\\Commands\\Crm\\BackfillOpportunityUserFromAccountCommand;\nuse Jiminny\\Console\\Commands\\Crm\\CleanDuplicateFieldDataCommand;\nuse Jiminny\\Console\\Commands\\Crm\\Hubspot\\ProcessMergedObjectsCommand;\nuse Jiminny\\Console\\Commands\\Crm\\Hubspot\\RestoreDealAssociationsCommand;\nuse Jiminny\\Console\\Commands\\Crm\\ProcessHubspotObjectsSyncBatches;\nuse Jiminny\\Console\\Commands\\Crm\\PurgeDeletedOpportunitiesCommand;\nuse Jiminny\\Console\\Commands\\Crm\\Hubspot\\ListJournalWebhookSubscriptionsCommand;\nuse Jiminny\\Console\\Commands\\Crm\\Hubspot\\SetupJournalDealWebhookSubscriptionsCommand;\nuse Jiminny\\Console\\Commands\\Crm\\SyncHubspotActiveDeals;\nuse Jiminny\\Console\\Commands\\Crm\\SyncOpportunitiesMissingFieldDataCommand;\nuse Jiminny\\Console\\Commands\\DeleteOldAiCrmNotesCommand;\nuse Jiminny\\Console\\Commands\\DeleteS3LeftoversCommand;\nuse Jiminny\\Console\\Commands\\DiarizeViaAiParticipantIdentificationCommand;\nuse Jiminny\\Console\\Commands\\Elasticsearch\\DeleteEmailDocumentsCommand;\nuse Jiminny\\Console\\Commands\\Elasticsearch\\RemoveGhostParticipantsCommand;\nuse Jiminny\\Console\\Commands\\FlushRolesPermissionsCache;\nuse Jiminny\\Console\\Commands\\GenerateInternalWebhookToken;\nuse Jiminny\\Console\\Commands\\IssueMcpTokenCommand;\nuse Jiminny\\Console\\Commands\\HubspotJournalPollingCommand;\nuse Jiminny\\Console\\Commands\\HubspotWebhookServiceCommand;\nuse Jiminny\\Console\\Commands\\Livestream\\StopHangingLivestreamsCommand;\nuse Jiminny\\Console\\Commands\\Mailboxes\\DeleteEmailMessagesWithoutActivityCommand;\nuse Jiminny\\Console\\Commands\\Mailboxes\\DeleteInboxEmailsCommand;\nuse Jiminny\\Console\\Commands\\PurgeSoftDeletedOpportunitiesCommand;\nuse Jiminny\\Console\\Commands\\PurgeSyncBatchesCommand;\nuse Jiminny\\Console\\Commands\\RemoveDeleteMarkersCommand;\nuse Jiminny\\Console\\Commands\\RemoveExpiredNudgesCommand;\nuse Jiminny\\Console\\Commands\\RemoveUnusedParticipantSpeechesCommand;\nuse Jiminny\\Console\\Commands\\Reports\\AutomatedReportsRetentionPolicyCommand;\nuse Jiminny\\Console\\Commands\\Reports\\DeleteReportCommand;\nuse Jiminny\\Console\\Commands\\RestoreActivityCrmProviderIdCommand;\nuse Jiminny\\Console\\Commands\\RestoreActivityTypeCommand;\nuse Jiminny\\Console\\Commands\\SendNudgeExpirationWarningsCommand;\nuse Jiminny\\Console\\Commands\\Slack\\SyncSlackUserCommand;\nuse Jiminny\\Console\\Commands\\Teams\\SyncTeamUsersCommand;\nuse Jiminny\\Console\\Commands\\Teams\\TeamDeleteCommand;\nuse Jiminny\\Console\\Commands\\Teams\\TeamsDeleteDeactivatedCommand;\nuse Jiminny\\Console\\Commands\\Teams\\TeamsDeleteRetentionCommand;\nuse Jiminny\\Console\\Commands\\Teams\\TeamSettingPutCommand;\nuse Jiminny\\Console\\Commands\\Teams\\UpdateTeamsCommand;\nuse Jiminny\\Console\\Commands\\Tracks\\CleanupActivityTracksCommand;\nuse Jiminny\\Console\\Commands\\Tracks\\DeleteUnusedTracksCommand;\nuse Jiminny\\Console\\Commands\\Tracks\\RestoreTracksCommand;\nuse Jiminny\\Console\\Commands\\Transcription\\DeleteOldTranscriptionsCommand;\nuse Jiminny\\Console\\Commands\\Transcription\\UpdateOldTranscriptionModelLocalesCommand;\nuse Jiminny\\Console\\Commands\\Twilio\\DeleteChurnedSubAccounts;\nuse Jiminny\\Console\\Commands\\Twilio\\DeletePredefinedSubAccounts;\nuse Jiminny\\Console\\Commands\\Twilio\\ReleaseNumbersCommand;\nuse Jiminny\\Jobs\\Activity\\SyncActivity;\nuse Jiminny\\Models\\Activity;\nuse Jiminny\\Models\\InboxEmail;\nuse Jiminny\\Services\\RecallAI\\Commands\\ImportRegionMeetingCommand;\nuse Jiminny\\Services\\RecallAI\\Commands\\ScheduleBotCommand;\n\nclass Kernel extends ConsoleKernel\n{\n use ConfirmableTrait;\n\n /**\n * The Artisan commands provided by your application.\n *\n * @var string[]\n */\n protected $commands = [\n Commands\\GeckoExport\\GeckoExportTranscriptCommand::class,\n Commands\\GeckoExport\\GeckoExportTranscriptionCommand::class,\n Commands\\GeckoExport\\GeckoExportParticipantSpeechesCommand::class,\n Commands\\Activities\\DeleteForCoachesCommand::class,\n ReindexRecentActivitiesCommand::class,\n Commands\\Crm\\BullhornPingCommand::class,\n Commands\\Crm\\BullhornSessionCommand::class,\n Commands\\Crm\\BullhornSearchCommand::class,\n Commands\\PlaybackThemes\\TopicsConsolidateCommand::class,\n Commands\\PlaybackThemes\\PlaybackThemesCopyCommand::class,\n Commands\\PlaybackThemes\\AssignTopicsUsedBySingleTeamCommand::class,\n Commands\\PlaybackThemes\\PlaybackThemesMigrateToVersionsCommand::class,\n Commands\\Vocabulary\\VocabularyCopyCommand::class,\n Commands\\Transcription\\TranscriptionPrintRaw::class,\n Commands\\Migrate\\JiminnyMigratePopulateActivitySourceCommand::class,\n Commands\\EngagementStats\\JiminnyEngagementStatsExplainCommand::class,\n Commands\\EngagementStatsRegenerateCommand::class,\n Commands\\Analytics\\NumberOfActivitiesPerActivityTypeCommand::class,\n Commands\\Elasticsearch\\MappingRunCommand::class,\n Commands\\Elasticsearch\\MappingInstallCommand::class,\n Commands\\Elasticsearch\\UpdateEsMappingSettingsCommand::class,\n Commands\\Analytics\\TranscriptionWordMatchCommand::class,\n Commands\\JiminnyCacheClearCommand::class,\n Commands\\Transcription\\TranscriptionSearchCommand::class,\n RetryStuckTranscriptionsCommand::class,\n RetryFailedTranscriptionsCommand::class,\n Commands\\JiminnyDebugCommand::class,\n Commands\\RunAiCallScoringForUntypedActivitiesCommand::class,\n Commands\\Calendars\\SyncCalendars::class,\n Commands\\Calendars\\SyncDeletedEvents::class,\n Commands\\Twilio\\FetchMetrics::class,\n Commands\\Twilio\\FetchEvents::class,\n Commands\\Twilio\\FetchSummary::class,\n Commands\\Twilio\\SyncZoneAccess::class,\n Commands\\DatabaseTableCount::class,\n Commands\\PurgeConferences::class,\n Commands\\ResetElasticSearch::class,\n Commands\\CreateDatabaseUsers::class,\n Commands\\Activities\\NotifyNotLogged::class,\n Commands\\Crm\\SyncTeamMetadata::class,\n Commands\\Crm\\SyncProfileMetadata::class,\n Commands\\Crm\\SyncContact::class,\n Commands\\Crm\\SyncObjects::class,\n Commands\\Crm\\SyncHubspotObjects::class,\n Commands\\Crm\\SyncAccount::class,\n Commands\\Crm\\ResetGovernorLimits::class,\n Commands\\Crm\\ManageSyncStrategyCommand::class,\n Commands\\ImportRecording::class,\n Commands\\TrackImported::class,\n Commands\\Twilio\\RecoverTwilioTracksCommand::class,\n Commands\\Crm\\SetupLayouts::class,\n Commands\\Tracks\\SyncTwilioTracks::class,\n Commands\\Activities\\StatusCount::class,\n\n Commands\\Mailboxes\\TextRelay\\WatchMailboxEvents::class,\n Commands\\Mailboxes\\InboxCreate::class,\n Commands\\Mailboxes\\InboxSync::class,\n Commands\\Mailboxes\\BatchCreate::class,\n Commands\\Mailboxes\\BatchProcess::class,\n Commands\\Mailboxes\\InboxPurge::class,\n Commands\\Mailboxes\\BatchRetryFailed::class,\n Commands\\Mailboxes\\BatchFailStalled::class,\n Commands\\Mailboxes\\SkipListsRefresh::class,\n Commands\\Mailboxes\\SkipListsDump::class,\n Commands\\Mailboxes\\TextRelay\\SyncMailbox::class,\n Commands\\Mailboxes\\DeleteInboxEmailsCommand::class,\n Commands\\Mailboxes\\DeleteEmailMessagesCommand::class,\n DeleteEmailMessagesWithoutActivityCommand::class,\n\n Commands\\Tracks\\CheckIntegrity::class,\n Commands\\Twilio\\RemoteLifecycle::class,\n Commands\\Twilio\\SyncNumbers::class,\n Commands\\Crm\\SetupActivityTypeForFollowUp::class,\n Commands\\Activities\\CheckPlayable::class,\n Commands\\Activities\\ActivityDeleteCommand::class,\n Commands\\Activities\\Copy::class,\n Commands\\Activities\\ActivityHardDeleteCommand::class,\n Commands\\Reports\\Team::class,\n Commands\\Reports\\GenerateMarketingReport::class,\n Commands\\Reports\\AutomatedReportsCommand::class,\n Commands\\Reports\\AutomatedReportsSendCommand::class,\n Commands\\MuteOrganizerChannel::class,\n Commands\\Tracks\\DeleteTracks::class,\n Commands\\Tracks\\RetryDownload::class,\n Commands\\Tracks\\RetryFailedDownloads::class,\n Commands\\Twilio\\SyncAddresses::class,\n Commands\\Activities\\UpdateElasticSearch::class,\n Commands\\MakeSlackLiveCoachingChatNotesOn::class,\n Commands\\Activities\\PreMeetingNotification::class,\n ScheduleBotCommand::class,\n ImportRegionMeetingCommand::class,\n Commands\\Activities\\MonitorMeetingCountCommand::class,\n Commands\\Activities\\MonitorMeetingStartCommand::class,\n Commands\\Activities\\MonitorMeetingEndCommand::class,\n Commands\\SyncActivity::class,\n Commands\\PhpApm::class,\n Commands\\Crm\\SyncOpportunity::class,\n Commands\\Crm\\SyncLead::class,\n Commands\\Users\\SyncLicenceDataToSalesforce::class,\n Commands\\Crm\\UpdateOpportunitySpecifications::class,\n Commands\\Users\\SyncToIntercom::class,\n Commands\\Users\\SyncToUserPilot::class,\n Commands\\Teams\\SyncToPlanhat::class,\n Commands\\Twilio\\SetZoneAccess::class,\n Commands\\Users\\CreateDefaultSavedSearchesCommand::class,\n Commands\\Crm\\SendNotLogged::class,\n Commands\\Teams\\DeactivateTeamCommand::class,\n Commands\\Crm\\SyncFieldMetadata::class,\n Commands\\Postmark\\SyncEmailTemplatesCommand::class,\n Commands\\PlaybackThemes\\ImportTriggersFromTranslatedCsvCommand::class,\n Commands\\Activities\\PreMeetingReminder::class,\n Commands\\Activities\\CustomerActivitiesExport::class,\n Commands\\Users\\RefreshAccessToken::class,\n Commands\\Calendars\\SetupCalendarSubscription::class,\n Commands\\Activities\\InviteMeetingBot::class,\n Commands\\Activities\\ChangeActivitiesPlaybookCategoryOnPlaybookChange::class,\n Commands\\Crm\\MigrateProvider::class,\n Commands\\Activities\\MigrateLocationFromCalendarEventToActivities::class,\n Commands\\HelperTruncateCoachingTables::class,\n Commands\\FixCrossTenantIssues::class,\n Commands\\Activities\\CloudCall\\SetupIntegration::class,\n Commands\\Activities\\CloudTalk\\FixTimeZone::class,\n Commands\\Activities\\Orum\\SetupIntegration::class,\n Commands\\Activities\\JustCall\\SetupIntegration::class,\n Commands\\Activities\\RingCentral\\AddInboundPromptSupport::class,\n Commands\\Dialers\\Dialpad\\SubscribeToWebhooks::class,\n Commands\\RecalculateDealRisksCommand::class,\n SendDealsUpdateCommand::class,\n Commands\\Activities\\SetProviderCapabilitiesField::class,\n Commands\\Teams\\InitiallySetNotificationProviderTeamsTable::class,\n Commands\\Crm\\AddLayoutEntities::class,\n Commands\\PropagateCoachingFeedbackCreatedAtToSectionFeedbacks::class,\n Commands\\JiminnyTokenInfoCommand::class,\n Commands\\JiminnySetEncryptedTokenManagerModeCommand::class,\n Commands\\EncryptTokensCommand::class,\n Commands\\Dialers\\Aircall\\CheckAndRenewWebhooks::class,\n Commands\\Migrate\\MigrateTeamRegionCommand::class,\n Commands\\ManageScimForTeam::class,\n Commands\\Dialers\\SyncUsersCommand::class,\n Commands\\WhichWorkerIsWorkingOnWhichJob::class,\n Commands\\GroupSetDefaultLanguageCommand::class,\n Commands\\Dev\\AddRateLimitCommand::class,\n Commands\\Dev\\ImportCallsCommand::class,\n Commands\\DealInsights\\BuildDealInsightsLayoutCommand::class,\n Commands\\DealInsights\\DeleteAskJiminnyDealPrompts::class,\n Commands\\Crm\\MatchCrmObjectsCommand::class,\n Commands\\Activities\\SetupIntegration\\EightByEight::class,\n Commands\\Calendars\\RemoveCalendarEventActivitiesCommand::class,\n Commands\\Activities\\Migrator\\MigrateFromGongCommand::class,\n Commands\\Activities\\Migrator\\MigrateFromChorusCommand::class,\n Commands\\Activities\\Migrator\\MigrateFromLeexiCommand::class,\n Commands\\Activities\\Migrator\\MigrateFromAvomaCommand::class,\n Commands\\Activities\\Migrator\\MigrateFromClariCommand::class,\n Commands\\Activities\\SetupIntegration\\ConnectAndSell::class,\n Commands\\Activities\\SetupIntegration\\CloudTalk::class,\n Commands\\Users\\CreateConferenceSlug::class,\n Commands\\Elasticsearch\\AsyncUpdateEsEntities::class,\n Commands\\Elasticsearch\\ResetAsyncElasticSearchCommand::class,\n Commands\\Playlists\\PlaylistSharesUpdateCommand::class,\n Commands\\Crm\\AutologDelayedCommand::class,\n Commands\\Activities\\HydrateDefaultActivityTypeCommand::class,\n Commands\\Crm\\CheckActivityLoggableCommand::class,\n Commands\\Activities\\MonitorDialerActivitiesCommand::class,\n Commands\\Activities\\SetupIntegration\\Xant::class,\n Commands\\ImportUsersFromCsvFile::class,\n Commands\\DevPostmanCommand::class,\n Commands\\Playlists\\FixTreeStructureCommand::class,\n Commands\\Zoom\\ResolvePmiLinksCommand::class,\n Commands\\MarkBranchForEnvironmentPipelineCommand::class,\n Commands\\Activities\\ProbeMediaSegmentsCommand::class,\n Commands\\Activities\\SetupIntegration\\AmazonConnect::class,\n Commands\\Playbooks\\ChangePlaybookActivityFieldCommand::class,\n MediaPipelineRestartCommand::class,\n Commands\\Dev\\FixHubSpotTokens::class,\n Commands\\Dev\\MonitorSocialAccountsState::class,\n Commands\\Activities\\SetupIntegration\\Vonage::class,\n Commands\\Activities\\SetupIntegration\\TwilioFlex::class,\n Commands\\Activities\\SetupIntegration\\TwilioFlexDirect::class,\n Commands\\Activities\\SetupIntegration\\TwilioFlexSetDialerAuthCredentialsCommand::class,\n Commands\\Activities\\SetupIntegration\\TwilioSetS3RecordingCredentialsCommand::class,\n SendActionItemsCommand::class,\n Commands\\Users\\ChangeEmail::class,\n Commands\\Calendars\\ListUserGoogleCalendars::class,\n Commands\\Activities\\JustCall\\SyncPlaybackLinkToCrmCommand::class,\n Commands\\Activities\\HydrateCallWithCrmDataCommand::class,\n Commands\\Activities\\UpdateActivityElasticSearchDocumentCommand::class,\n Commands\\Activities\\SetupIntegration\\Talkdesk::class,\n Commands\\Transcription\\Microsoft\\TranscriptionProviderMicrosoftWebhookRegisterCommand::class,\n Commands\\Transcription\\Microsoft\\TranscriptionProviderMicrosoftWebhookListCommand::class,\n Commands\\Transcription\\Microsoft\\TranscriptionProviderMicrosoftWebhookShow::class,\n Commands\\Transcription\\Microsoft\\TranscriptionProviderMicrosoftWebhookDeleteCommand::class,\n Commands\\Activities\\SetupIntegration\\TwilioVideo::class,\n Commands\\Crm\\SetupCloseCrm::class,\n Commands\\Crm\\SetupCopperCrm::class,\n Commands\\Crm\\FullSyncOpportunityCommand::class,\n Commands\\Crm\\IntegrationApp\\CrmEntitiesFullSyncCommand::class,\n Commands\\Crm\\IntegrationApp\\ValidateConnectionCommand::class,\n Commands\\Activities\\Workflow\\RefreshCrmData::class,\n Commands\\Activities\\Migrator\\AnalyseGongCalls::class,\n Commands\\Users\\AddVoiceRoleToRecorderCommand::class,\n Commands\\Activities\\SyncMissingCallDispositions::class,\n Commands\\Calendars\\RemoveFutureCalendarEvents::class,\n FlushRolesPermissionsCache::class,\n Commands\\Activities\\SetupIntegration\\FiveNine::class,\n CalendarEventDeleteCancelledCommand::class,\n CalendarEventDeletePastCommand::class,\n ReportActivityProcessingTimeToDatadogCommand::class,\n ReportProcessingStatesToDatadogCommand::class,\n ReleaseNumbersCommand::class,\n BackfillOpportunityUserFromAccountCommand::class,\n RemoveExpiredRoleChangeEventsCommand::class,\n RemoveExpiredNudgesCommand::class,\n SendNudgeExpirationWarningsCommand::class,\n AutologOldActivitiesCommand::class,\n RemoveUnusedParticipantSpeechesCommand::class,\n DeleteActivitiesForChurnedTeamsCommand::class,\n HardDeleteActivitiesForChurnedTeamsCommand::class,\n TeamDeleteCommand::class,\n TeamsDeleteDeactivatedCommand::class,\n UpdateTeamsCommand::class,\n OverrideTranscriptionLocaleCommand::class,\n SyncSlackUserCommand::class,\n PurgeSoftDeletedOpportunitiesCommand::class,\n PurgeSyncBatchesCommand::class,\n ProphetAnalyzeClosedDealsCommand::class,\n DeleteChurnedSubAccounts::class,\n Commands\\ProphetAi\\DumpContext::class,\n DeletePredefinedSubAccounts::class,\n DeleteActivitiesForRetentionTeamsCommand::class,\n HardDeleteActivitiesTeamsCommand::class,\n TeamsDeleteRetentionCommand::class,\n TeamSettingPutCommand::class,\n StopHangingLivestreamsCommand::class,\n FixActivitiesOpportunity::class,\n Commands\\Activities\\SetupIntegration\\Salesforce\\SetupSalesforceIntegrationCommand::class,\n UpdateOldTranscriptionModelLocalesCommand::class,\n Commands\\Dev\\FixMissMatchedCrmActivitiesCommand::class,\n DownloadMissingTrackCommand::class,\n ActivitiesMatchCrmCommand::class,\n DeleteEmailDocumentsCommand::class,\n DeleteOldTranscriptionsCommand::class,\n DeleteS3LeftoversCommand::class,\n RemoveDeleteMarkersCommand::class,\n SyncTeamUsersCommand::class,\n ReassignTranscriptCommand::class,\n DiarizeViaAiParticipantIdentificationCommand::class,\n RestoreActivityTypeCommand::class,\n DeleteOldAiCrmNotesCommand::class,\n DeleteReportCommand::class,\n AutomatedReportsRetentionPolicyCommand::class,\n SyncHubspotActiveDeals::class,\n GenerateInternalWebhookToken::class,\n IssueMcpTokenCommand::class,\n RestoreActivityCrmProviderIdCommand::class,\n CleanupActivityTracksCommand::class,\n DeleteUnusedTracksCommand::class,\n RestoreTracksCommand::class,\n HubspotWebhookServiceCommand::class,\n ProcessMergedObjectsCommand::class,\n HubspotJournalPollingCommand::class,\n SetupJournalDealWebhookSubscriptionsCommand::class,\n ListJournalWebhookSubscriptionsCommand::class,\n RemoveGhostParticipantsCommand::class,\n AutodetectAiActivityTypeCommand::class,\n Commands\\Crm\\LogActivitiesCommand::class,\n Commands\\Crm\\MatchOpportunityActivitiesCommand::class,\n PurgeDeletedOpportunitiesCommand::class,\n CleanDuplicateFieldDataCommand::class,\n RetryProspectSummaryCommand::class,\n ProcessHubspotObjectsSyncBatches::class,\n SyncOpportunitiesMissingFieldDataCommand::class,\n RestoreDealAssociationsCommand::class,\n ];\n\n private Schedule $schedule;\n private string $output;\n\n protected function schedule(Schedule $schedule): void\n {\n $this->schedule = $schedule;\n $this->output = config('jiminny.scheduler_log');\n\n $schedule->useCache('redis');\n\n $currentMinute = (int) date('i');\n $currentDay = (int) date('w');\n\n $this->scheduleEveryMinute();\n $this->scheduleEveryTwoMinutes();\n $this->scheduleEveryFiveMinutes();\n $this->scheduleEveryTenMinutes();\n $this->scheduleEveryFifteenMinutes();\n $this->scheduleEveryThirtyMinutes();\n $this->scheduleHourly();\n $this->scheduleDaily();\n $this->scheduleWeekly($currentDay);\n $this->scheduleSpecificTimes();\n $this->scheduleDynamic($currentMinute);\n }\n\n protected function scheduleEveryMinute(): void\n {\n $this->scheduleCommand('meeting-bot:schedule-bot', expiresAt: 1)->everyMinute();\n $this->scheduleCommand('dialers:monitor-activities')->everyMinute();\n $this->scheduleCommand('jiminny:monitor-social-accounts')->everyMinute();\n $this->scheduleCommand('mailbox:skip-lists:refresh')->everyMinute();\n\n $this->schedule->command('mailbox:batch:process', ['--max-batches=15'])\n ->everyMinute()\n ->sendOutputTo($this->output);\n }\n\n protected function scheduleEveryTwoMinutes(): void\n {\n $this->scheduleCommand('conference:monitor:count', [], 2)->everyTwoMinutes();\n }\n\n protected function scheduleEveryFiveMinutes(): void\n {\n $this->scheduleCommand('activity:purge-stale', [], 4)->everyFiveMinutes();\n // Offset by 1 minute to avoid overlap with crm:sync-objects (runs at :14 and :44)\n $this->scheduleCommand('crm:sync-hubspot-objects', [], 4)\n ->cron('1,6,11,16,21,26,31,36,41,46,51,56 * * * *');\n $this->scheduleCommand('mailbox:text-relay:sync')->everyFiveMinutes();\n $this->scheduleCommand('conference:pre-meeting-notification', [], 3)->everyFiveMinutes();\n $this->scheduleCommand('conference:monitor:start', expiresAt: 3)->everyFiveMinutes();\n $this->scheduleCommand('conference:monitor:end', expiresAt: 3)->everyFiveMinutes();\n $this->scheduleCommand('jiminny:fix-hubspot-tokens')->everyFiveMinutes();\n $this->scheduleCommand('conference:pre-meeting-reminder')->everyFiveMinutes()->runInBackground();\n\n $this->schedule->command('mailbox:batch:create')\n ->cron('2-59/5 * * * *')\n ->withoutOverlapping(180)\n ->onOneServer()\n ->sendOutputTo($this->output);\n\n $this->schedule->command('mailbox:batch:retry-failed', ['--max-batches=15'])\n ->cron('3-59/5 * * * *')\n ->withoutOverlapping(180)\n ->onOneServer()\n ->sendOutputTo($this->output)\n ->runInBackground();\n\n $this->schedule->command('hubspot:journal-poll', ['--start'])\n ->everyFiveMinutes()\n ->sendOutputTo($this->output)\n ->runInBackground();\n }\n\n protected function scheduleEveryTenMinutes(): void\n {\n $this->scheduleCommand('jiminny:transcription:retry-failed')->everyTenMinutes();\n $this->scheduleCommand('activity:notify-not-logged')->cron('6,16,26,36,46,56 * * * *');\n $this->scheduleCommand('activity:status-count')->cron('6,16,26,36,46,56 * * * *');\n $this->scheduleCommand('mailbox:sync')->cron('6,16,26,36,46,56 * * * *');\n $this->scheduleCommand('crm:reset-governor')->everyTenMinutes();\n }\n\n protected function scheduleEveryFifteenMinutes(): void\n {\n $this->scheduleCommand('datadog:report:processing-sla-activities')->everyFifteenMinutes();\n $this->scheduleCommand('calendar:sync', ['--dateMode=daily'], 14)->cron('13,28,43,58 * * * *');\n $this->scheduleCommand('activity:aircall:check-and-renew')->cron('9,24,39,54 * * * *');\n $this->scheduleCommand('track:retry-failed-downloads')->cron('9,24,39,54 * * * *');\n $this->scheduleCommand('crm:autolog-delayed')->cron('3,18,33,48 * * * *');\n\n $this->scheduleCommand('activity:sync', [\n '--from' => now()->subMinutes(16)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--skipProviders' => [\n Activity::PROVIDER_RINGCENTRAL,\n Activity::PROVIDER_AVAYA,\n Activity::PROVIDER_TELUS,\n Activity::PROVIDER_TALKDESK,\n ],\n ])->everyFifteenMinutes();\n\n $this->scheduleCommand('activity:sync', [\n Activity::PROVIDER_RINGCENTRAL,\n Activity::PROVIDER_AVAYA,\n Activity::PROVIDER_TELUS,\n Activity::PROVIDER_TALKDESK,\n '--from' => now()->subMinutes(16)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n ])->cron('7,22,37,52 * * * *');\n }\n\n protected function scheduleEveryThirtyMinutes(): void\n {\n $this->scheduleCommand('crm:sync-objects')->cron('14,44 * * * *');\n $this->scheduleCommand('mailbox:batch:fail-stalled')->everyThirtyMinutes();\n\n $this->scheduleCommand('activities:delete-activities-for-deactivated-teams', expiresAt: 5)\n ->between('02:58', '05:29')\n ->everyThirtyMinutes()\n ->runInBackground();\n\n $this->scheduleActivitiesHardDelete();\n }\n\n protected function scheduleHourly(): void\n {\n $this->scheduleCommand('jiminny:transcription:retry-stuck')->hourly();\n $this->scheduleCommand('twilio:recover-tracks')->cron('22 * * * *');\n $this->scheduleCommand('dialers:sync-users')->cron('22 * * * *');\n $this->scheduleCommand('datadog:report:failed-processing-states')->cron('22 * * * *');\n $this->scheduleCommand('automated-reports:send')->hourly();\n $this->scheduleCommand('deal-insights:send-update')->hourlyAt(0);\n $this->scheduleCommand('crm:integration-app-validate-team-connection')->hourlyAt(23);\n }\n\n protected function scheduleDaily(): void\n {\n $this->scheduleCommand('teams:sync-planhat')->daily();\n $this->scheduleCommand('twilio:sync-addresses')->daily();\n $this->scheduleCommand('twilio:sync-zone-access')->daily();\n $this->scheduleCommand('mailbox:text-relay:watch-text-events')->daily();\n $this->scheduleCommand('users:sync-licence-data')->daily();\n $this->scheduleCommand('users:sync-intercom-data')->daily();\n $this->scheduleCommand('nudges:send-expiration-warnings')->daily();\n $this->scheduleCommand('nudges-data-clean-up', ['--deleteExpiredNudges'])->daily();\n }\n\n protected function scheduleWeekly(int $currentDay): void\n {\n if ($currentDay === 0) {\n $this->scheduleCommand('crm:update-opp-specs')->weeklyOn(0);\n }\n\n if ($currentDay === 6) {\n $this->scheduleCommand('jiminny:acl:remove-expired-role-change-events')->saturdays();\n $this->scheduleCommand('activity:sync', [\n Activity::PROVIDER_AMAZON_CONNECT,\n '--from' => now()->subDays(7)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n ])->saturdays()->at('01:00')->runInBackground();\n $this->scheduleCommand('calendar:event:delete-past', ['--force'], 60)\n ->saturdays()->at('01:07')->runInBackground();\n $this->scheduleCommand('calendar:event:delete-cancelled', ['--force'], 60 * 47 + 52)\n ->saturdays()->at('05:08')->runInBackground();\n $this->scheduleCommand('nudges-data-clean-up --squashNudgeRuns')\n ->weeklyOn(6, '6:00');\n $this->scheduleCommand('nudges-data-clean-up --pruneOldRuns --retentionDays=35')\n ->weeklyOn(6, '7:00');\n }\n }\n\n protected function scheduleSpecificTimes(): void\n {\n $this->scheduleCommand('deal-risks:calculate', ['--cronjob'])->dailyAt('00:00');\n\n $this->scheduleCommand(DeleteInboxEmailsCommand::NAME, [\n '--status' => InboxEmail::STATUS_DISCARDED,\n '--to' => now()->subWeeks(2)->format('Y-m-d'),\n ])->saturdays()->at('00:20')->runInBackground();\n\n $this->scheduleCommand(DeleteInboxEmailsCommand::NAME, [\n '--status' => InboxEmail::STATUS_PROCESSED,\n '--to' => now()->subWeeks(2)->format('Y-m-d'),\n ])->saturdays()->at('00:30')->runInBackground();\n\n $this->scheduleCommand('automated-reports')->dailyAt('01:00');\n $this->scheduleCommand('crm:sync-team-metadata')->dailyAt('01:05');\n $this->scheduleCommand('crm:sync-profile-metadata')->dailyAt('01:05');\n $this->scheduleCommand('calendar:sync-deleted-events')->dailyAt('01:10');\n $this->scheduleCommand('teams:delete-retention')->dailyAt('02:55');\n $this->scheduleCommand('teams:delete-deactivated')->dailyAt('02:58');\n $this->scheduleCommand('twilio:remote-lifecycle')->dailyAt('03:00');\n\n $this->scheduleCommand('activity:sync', [\n Activity::PROVIDER_VONAGE,\n Activity::PROVIDER_FIVE_NINE,\n '--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n ])->dailyAt('03:05');\n\n\n $this->scheduleCommand('activities:delete-retention-teams', expiresAt: 240)->dailyAt('03:04');\n $this->scheduleCommand('automated-reports:run-retention-policy', expiresAt: 120)->dailyAt('03:15');\n $this->scheduleCommand('stop:hanging:livestreams')->dailyAt('03:30');\n $this->scheduleCommand('crm:purge-sync-batches')->dailyAt('03:45');\n $this->scheduleCommand('twilio:sync-numbers')->dailyAt('04:00');\n\n if (! $this->app->environment('production')) {\n $this->scheduleCommand('activities:hard-delete', ['--limit' => 1000, '--jobs' => 5], 60)\n ->dailyAt('04:02')->runInBackground();\n }\n\n $this->scheduleCommand('crm:full-sync-opportunity')->dailyAt('05:00');\n\n $this->scheduleCommand('activity:sync', [\n '--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--skipProviders' => [\n Activity::PROVIDER_VONAGE,\n Activity::PROVIDER_FIVE_NINE,\n ],\n ])->dailyAt('05:05');\n\n if (! $this->app->environment('qa')) {\n $this->scheduleCommand('ai-crm-notes:delete-old')->dailyAt('07:00');\n }\n\n $this->scheduleCommand('activity:sync-dispositions', [\n Activity::PROVIDER_HUBSPOT,\n '--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n ])->dailyAt('07:05');\n }\n\n protected function scheduleDynamic(int $currentMinute): void\n {\n $this->scheduleHourlyFallbackActivitySyncs($currentMinute);\n $this->scheduleBullhornHeartbeat($currentMinute);\n }\n\n private function scheduleHourlyFallbackActivitySyncs(int $offsetMinute): void\n {\n if ($offsetMinute === 0) {\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUD_TALK, 3, 0);\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_VONAGE, 6, 0);\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUDCALL, 3, 0);\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUDCALL_US, 3, 0);\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_FIVE_NINE, 3, 0);\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_HUBSPOT, 1, 0);\n } elseif ($offsetMinute === 1) {\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_RINGCENTRAL, Constants::RINGCENTRAL_CALL_LOG_LOOK_BACK_HOURS, 1);\n } elseif ($offsetMinute === 2) {\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_AVAYA, Constants::RINGCENTRAL_CALL_LOG_LOOK_BACK_HOURS, 2);\n }\n }\n\n private function scheduleBullhornHeartbeat(int $currentMinute): void\n {\n $bhHeartbeatInterval = config('services.bullhorn.heartbeatInterval', 0);\n if ($bhHeartbeatInterval > 0) {\n $minutes = max((int) floor($bhHeartbeatInterval / 60), 1);\n if ($currentMinute % $minutes === 0) {\n $bhEvent = $this->scheduleCommand('crm:bullhorn:ping', ['--heartbeat']);\n if ($minutes > 30) {\n $bhEvent->hourly();\n } else {\n $bhEvent->cron(sprintf('*/%d * * * *', $minutes));\n }\n }\n }\n }\n\n private function scheduleActivitiesHardDelete(): void\n {\n if (config(key: 'jiminny.deploy_region') === 'eu') {\n $this->scheduleCommand(\n name: 'activities:hard-delete',\n options: ['--limit' => 1000, '--jobs' => 20],\n expiresAt: 29\n )\n ->between('02:59', '07:02')->everyThirtyMinutes()\n ->runInBackground();\n } elseif ($this->app->environment('production')) {\n $this->scheduleCommand(\n name: 'activities:hard-delete',\n options: ['--limit' => 2000, '--jobs' => 20],\n expiresAt: 29\n )\n ->between('02:59', '07:02')->everyThirtyMinutes()\n ->runInBackground();\n }\n }\n\n private function scheduleHourlyFallbackActivitySync(string $provider, int $hours, int $offsetMinute = 0): void\n {\n $this->scheduleCommand('activity:sync', [\n $provider,\n '--from' => now()->subHours($hours)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n ])->hourlyAt($offsetMinute);\n }\n\n /**\n * Register the Closure based commands for the application.\n */\n protected function commands(): void\n {\n require_once base_path('routes/console.php');\n }\n\n private function scheduleCommand(string $name, array $options = [], $expiresAt = 60 * 3): Event\n {\n return $this->schedule\n ->command($name, $options)\n ->withoutOverlapping($expiresAt)\n ->onOneServer()\n ->sendOutputTo($this->output)\n ;\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\nnamespace Jiminny\\Console;\n\nuse Illuminate\\Console\\ConfirmableTrait;\nuse Illuminate\\Console\\Scheduling\\Event;\nuse Illuminate\\Console\\Scheduling\\Schedule;\nuse Illuminate\\Foundation\\Console\\Kernel as ConsoleKernel;\nuse Jiminny\\Component\\Acl\\RemoveExpiredRoleChangeEventsCommand;\nuse Jiminny\\Component\\ActionItems\\Commands\\SendActionItemsCommand;\nuse Jiminny\\Component\\AiActivityType\\Commands\\AutodetectAiActivityTypeCommand;\nuse Jiminny\\Component\\AskJiminnyAi\\Commands\\ProphetAnalyzeClosedDealsCommand;\nuse Jiminny\\Component\\Cache\\Constants;\nuse Jiminny\\Component\\DealInsights\\Commands\\SendDealsUpdateCommand;\nuse Jiminny\\Component\\MediaPipeline\\Command\\MediaPipelineRestartCommand;\nuse Jiminny\\Component\\MediaPipeline\\Command\\ReportActivityProcessingTimeToDatadogCommand;\nuse Jiminny\\Component\\MediaPipeline\\Command\\ReportProcessingStatesToDatadogCommand;\nuse Jiminny\\Component\\Transcription\\Commands\\OverrideTranscriptionLocaleCommand;\nuse Jiminny\\Component\\Transcription\\Commands\\RetryFailedTranscriptionsCommand;\nuse Jiminny\\Component\\Transcription\\Commands\\RetryStuckTranscriptionsCommand;\nuse Jiminny\\Console\\Commands\\Activities\\ActivitiesMatchCrmCommand;\nuse Jiminny\\Console\\Commands\\Activities\\AutologOldActivitiesCommand;\nuse Jiminny\\Console\\Commands\\Activities\\DeleteActivitiesForChurnedTeamsCommand;\nuse Jiminny\\Console\\Commands\\Activities\\DeleteActivitiesForRetentionTeamsCommand;\nuse Jiminny\\Console\\Commands\\Activities\\DownloadMissingTrackCommand;\nuse Jiminny\\Console\\Commands\\Activities\\FixActivitiesOpportunity;\nuse Jiminny\\Console\\Commands\\Activities\\HardDeleteActivitiesForChurnedTeamsCommand;\nuse Jiminny\\Console\\Commands\\Activities\\HardDeleteActivitiesTeamsCommand;\nuse Jiminny\\Console\\Commands\\Activities\\ReassignTranscriptCommand;\nuse Jiminny\\Console\\Commands\\Activities\\ReindexRecentActivitiesCommand;\nuse Jiminny\\Console\\Commands\\Activities\\RetryProspectSummaryCommand;\nuse Jiminny\\Console\\Commands\\Calendars\\Events\\CalendarEventDeleteCancelledCommand;\nuse Jiminny\\Console\\Commands\\Calendars\\Events\\CalendarEventDeletePastCommand;\nuse Jiminny\\Console\\Commands\\Crm\\BackfillOpportunityUserFromAccountCommand;\nuse Jiminny\\Console\\Commands\\Crm\\CleanDuplicateFieldDataCommand;\nuse Jiminny\\Console\\Commands\\Crm\\Hubspot\\ProcessMergedObjectsCommand;\nuse Jiminny\\Console\\Commands\\Crm\\Hubspot\\RestoreDealAssociationsCommand;\nuse Jiminny\\Console\\Commands\\Crm\\ProcessHubspotObjectsSyncBatches;\nuse Jiminny\\Console\\Commands\\Crm\\PurgeDeletedOpportunitiesCommand;\nuse Jiminny\\Console\\Commands\\Crm\\Hubspot\\ListJournalWebhookSubscriptionsCommand;\nuse Jiminny\\Console\\Commands\\Crm\\Hubspot\\SetupJournalDealWebhookSubscriptionsCommand;\nuse Jiminny\\Console\\Commands\\Crm\\SyncHubspotActiveDeals;\nuse Jiminny\\Console\\Commands\\Crm\\SyncOpportunitiesMissingFieldDataCommand;\nuse Jiminny\\Console\\Commands\\DeleteOldAiCrmNotesCommand;\nuse Jiminny\\Console\\Commands\\DeleteS3LeftoversCommand;\nuse Jiminny\\Console\\Commands\\DiarizeViaAiParticipantIdentificationCommand;\nuse Jiminny\\Console\\Commands\\Elasticsearch\\DeleteEmailDocumentsCommand;\nuse Jiminny\\Console\\Commands\\Elasticsearch\\RemoveGhostParticipantsCommand;\nuse Jiminny\\Console\\Commands\\FlushRolesPermissionsCache;\nuse Jiminny\\Console\\Commands\\GenerateInternalWebhookToken;\nuse Jiminny\\Console\\Commands\\IssueMcpTokenCommand;\nuse Jiminny\\Console\\Commands\\HubspotJournalPollingCommand;\nuse Jiminny\\Console\\Commands\\HubspotWebhookServiceCommand;\nuse Jiminny\\Console\\Commands\\Livestream\\StopHangingLivestreamsCommand;\nuse Jiminny\\Console\\Commands\\Mailboxes\\DeleteEmailMessagesWithoutActivityCommand;\nuse Jiminny\\Console\\Commands\\Mailboxes\\DeleteInboxEmailsCommand;\nuse Jiminny\\Console\\Commands\\PurgeSoftDeletedOpportunitiesCommand;\nuse Jiminny\\Console\\Commands\\PurgeSyncBatchesCommand;\nuse Jiminny\\Console\\Commands\\RemoveDeleteMarkersCommand;\nuse Jiminny\\Console\\Commands\\RemoveExpiredNudgesCommand;\nuse Jiminny\\Console\\Commands\\RemoveUnusedParticipantSpeechesCommand;\nuse Jiminny\\Console\\Commands\\Reports\\AutomatedReportsRetentionPolicyCommand;\nuse Jiminny\\Console\\Commands\\Reports\\DeleteReportCommand;\nuse Jiminny\\Console\\Commands\\RestoreActivityCrmProviderIdCommand;\nuse Jiminny\\Console\\Commands\\RestoreActivityTypeCommand;\nuse Jiminny\\Console\\Commands\\SendNudgeExpirationWarningsCommand;\nuse Jiminny\\Console\\Commands\\Slack\\SyncSlackUserCommand;\nuse Jiminny\\Console\\Commands\\Teams\\SyncTeamUsersCommand;\nuse Jiminny\\Console\\Commands\\Teams\\TeamDeleteCommand;\nuse Jiminny\\Console\\Commands\\Teams\\TeamsDeleteDeactivatedCommand;\nuse Jiminny\\Console\\Commands\\Teams\\TeamsDeleteRetentionCommand;\nuse Jiminny\\Console\\Commands\\Teams\\TeamSettingPutCommand;\nuse Jiminny\\Console\\Commands\\Teams\\UpdateTeamsCommand;\nuse Jiminny\\Console\\Commands\\Tracks\\CleanupActivityTracksCommand;\nuse Jiminny\\Console\\Commands\\Tracks\\DeleteUnusedTracksCommand;\nuse Jiminny\\Console\\Commands\\Tracks\\RestoreTracksCommand;\nuse Jiminny\\Console\\Commands\\Transcription\\DeleteOldTranscriptionsCommand;\nuse Jiminny\\Console\\Commands\\Transcription\\UpdateOldTranscriptionModelLocalesCommand;\nuse Jiminny\\Console\\Commands\\Twilio\\DeleteChurnedSubAccounts;\nuse Jiminny\\Console\\Commands\\Twilio\\DeletePredefinedSubAccounts;\nuse Jiminny\\Console\\Commands\\Twilio\\ReleaseNumbersCommand;\nuse Jiminny\\Jobs\\Activity\\SyncActivity;\nuse Jiminny\\Models\\Activity;\nuse Jiminny\\Models\\InboxEmail;\nuse Jiminny\\Services\\RecallAI\\Commands\\ImportRegionMeetingCommand;\nuse Jiminny\\Services\\RecallAI\\Commands\\ScheduleBotCommand;\n\nclass Kernel extends ConsoleKernel\n{\n use ConfirmableTrait;\n\n /**\n * The Artisan commands provided by your application.\n *\n * @var string[]\n */\n protected $commands = [\n Commands\\GeckoExport\\GeckoExportTranscriptCommand::class,\n Commands\\GeckoExport\\GeckoExportTranscriptionCommand::class,\n Commands\\GeckoExport\\GeckoExportParticipantSpeechesCommand::class,\n Commands\\Activities\\DeleteForCoachesCommand::class,\n ReindexRecentActivitiesCommand::class,\n Commands\\Crm\\BullhornPingCommand::class,\n Commands\\Crm\\BullhornSessionCommand::class,\n Commands\\Crm\\BullhornSearchCommand::class,\n Commands\\PlaybackThemes\\TopicsConsolidateCommand::class,\n Commands\\PlaybackThemes\\PlaybackThemesCopyCommand::class,\n Commands\\PlaybackThemes\\AssignTopicsUsedBySingleTeamCommand::class,\n Commands\\PlaybackThemes\\PlaybackThemesMigrateToVersionsCommand::class,\n Commands\\Vocabulary\\VocabularyCopyCommand::class,\n Commands\\Transcription\\TranscriptionPrintRaw::class,\n Commands\\Migrate\\JiminnyMigratePopulateActivitySourceCommand::class,\n Commands\\EngagementStats\\JiminnyEngagementStatsExplainCommand::class,\n Commands\\EngagementStatsRegenerateCommand::class,\n Commands\\Analytics\\NumberOfActivitiesPerActivityTypeCommand::class,\n Commands\\Elasticsearch\\MappingRunCommand::class,\n Commands\\Elasticsearch\\MappingInstallCommand::class,\n Commands\\Elasticsearch\\UpdateEsMappingSettingsCommand::class,\n Commands\\Analytics\\TranscriptionWordMatchCommand::class,\n Commands\\JiminnyCacheClearCommand::class,\n Commands\\Transcription\\TranscriptionSearchCommand::class,\n RetryStuckTranscriptionsCommand::class,\n RetryFailedTranscriptionsCommand::class,\n Commands\\JiminnyDebugCommand::class,\n Commands\\RunAiCallScoringForUntypedActivitiesCommand::class,\n Commands\\Calendars\\SyncCalendars::class,\n Commands\\Calendars\\SyncDeletedEvents::class,\n Commands\\Twilio\\FetchMetrics::class,\n Commands\\Twilio\\FetchEvents::class,\n Commands\\Twilio\\FetchSummary::class,\n Commands\\Twilio\\SyncZoneAccess::class,\n Commands\\DatabaseTableCount::class,\n Commands\\PurgeConferences::class,\n Commands\\ResetElasticSearch::class,\n Commands\\CreateDatabaseUsers::class,\n Commands\\Activities\\NotifyNotLogged::class,\n Commands\\Crm\\SyncTeamMetadata::class,\n Commands\\Crm\\SyncProfileMetadata::class,\n Commands\\Crm\\SyncContact::class,\n Commands\\Crm\\SyncObjects::class,\n Commands\\Crm\\SyncHubspotObjects::class,\n Commands\\Crm\\SyncAccount::class,\n Commands\\Crm\\ResetGovernorLimits::class,\n Commands\\Crm\\ManageSyncStrategyCommand::class,\n Commands\\ImportRecording::class,\n Commands\\TrackImported::class,\n Commands\\Twilio\\RecoverTwilioTracksCommand::class,\n Commands\\Crm\\SetupLayouts::class,\n Commands\\Tracks\\SyncTwilioTracks::class,\n Commands\\Activities\\StatusCount::class,\n\n Commands\\Mailboxes\\TextRelay\\WatchMailboxEvents::class,\n Commands\\Mailboxes\\InboxCreate::class,\n Commands\\Mailboxes\\InboxSync::class,\n Commands\\Mailboxes\\BatchCreate::class,\n Commands\\Mailboxes\\BatchProcess::class,\n Commands\\Mailboxes\\InboxPurge::class,\n Commands\\Mailboxes\\BatchRetryFailed::class,\n Commands\\Mailboxes\\BatchFailStalled::class,\n Commands\\Mailboxes\\SkipListsRefresh::class,\n Commands\\Mailboxes\\SkipListsDump::class,\n Commands\\Mailboxes\\TextRelay\\SyncMailbox::class,\n Commands\\Mailboxes\\DeleteInboxEmailsCommand::class,\n Commands\\Mailboxes\\DeleteEmailMessagesCommand::class,\n DeleteEmailMessagesWithoutActivityCommand::class,\n\n Commands\\Tracks\\CheckIntegrity::class,\n Commands\\Twilio\\RemoteLifecycle::class,\n Commands\\Twilio\\SyncNumbers::class,\n Commands\\Crm\\SetupActivityTypeForFollowUp::class,\n Commands\\Activities\\CheckPlayable::class,\n Commands\\Activities\\ActivityDeleteCommand::class,\n Commands\\Activities\\Copy::class,\n Commands\\Activities\\ActivityHardDeleteCommand::class,\n Commands\\Reports\\Team::class,\n Commands\\Reports\\GenerateMarketingReport::class,\n Commands\\Reports\\AutomatedReportsCommand::class,\n Commands\\Reports\\AutomatedReportsSendCommand::class,\n Commands\\MuteOrganizerChannel::class,\n Commands\\Tracks\\DeleteTracks::class,\n Commands\\Tracks\\RetryDownload::class,\n Commands\\Tracks\\RetryFailedDownloads::class,\n Commands\\Twilio\\SyncAddresses::class,\n Commands\\Activities\\UpdateElasticSearch::class,\n Commands\\MakeSlackLiveCoachingChatNotesOn::class,\n Commands\\Activities\\PreMeetingNotification::class,\n ScheduleBotCommand::class,\n ImportRegionMeetingCommand::class,\n Commands\\Activities\\MonitorMeetingCountCommand::class,\n Commands\\Activities\\MonitorMeetingStartCommand::class,\n Commands\\Activities\\MonitorMeetingEndCommand::class,\n Commands\\SyncActivity::class,\n Commands\\PhpApm::class,\n Commands\\Crm\\SyncOpportunity::class,\n Commands\\Crm\\SyncLead::class,\n Commands\\Users\\SyncLicenceDataToSalesforce::class,\n Commands\\Crm\\UpdateOpportunitySpecifications::class,\n Commands\\Users\\SyncToIntercom::class,\n Commands\\Users\\SyncToUserPilot::class,\n Commands\\Teams\\SyncToPlanhat::class,\n Commands\\Twilio\\SetZoneAccess::class,\n Commands\\Users\\CreateDefaultSavedSearchesCommand::class,\n Commands\\Crm\\SendNotLogged::class,\n Commands\\Teams\\DeactivateTeamCommand::class,\n Commands\\Crm\\SyncFieldMetadata::class,\n Commands\\Postmark\\SyncEmailTemplatesCommand::class,\n Commands\\PlaybackThemes\\ImportTriggersFromTranslatedCsvCommand::class,\n Commands\\Activities\\PreMeetingReminder::class,\n Commands\\Activities\\CustomerActivitiesExport::class,\n Commands\\Users\\RefreshAccessToken::class,\n Commands\\Calendars\\SetupCalendarSubscription::class,\n Commands\\Activities\\InviteMeetingBot::class,\n Commands\\Activities\\ChangeActivitiesPlaybookCategoryOnPlaybookChange::class,\n Commands\\Crm\\MigrateProvider::class,\n Commands\\Activities\\MigrateLocationFromCalendarEventToActivities::class,\n Commands\\HelperTruncateCoachingTables::class,\n Commands\\FixCrossTenantIssues::class,\n Commands\\Activities\\CloudCall\\SetupIntegration::class,\n Commands\\Activities\\CloudTalk\\FixTimeZone::class,\n Commands\\Activities\\Orum\\SetupIntegration::class,\n Commands\\Activities\\JustCall\\SetupIntegration::class,\n Commands\\Activities\\RingCentral\\AddInboundPromptSupport::class,\n Commands\\Dialers\\Dialpad\\SubscribeToWebhooks::class,\n Commands\\RecalculateDealRisksCommand::class,\n SendDealsUpdateCommand::class,\n Commands\\Activities\\SetProviderCapabilitiesField::class,\n Commands\\Teams\\InitiallySetNotificationProviderTeamsTable::class,\n Commands\\Crm\\AddLayoutEntities::class,\n Commands\\PropagateCoachingFeedbackCreatedAtToSectionFeedbacks::class,\n Commands\\JiminnyTokenInfoCommand::class,\n Commands\\JiminnySetEncryptedTokenManagerModeCommand::class,\n Commands\\EncryptTokensCommand::class,\n Commands\\Dialers\\Aircall\\CheckAndRenewWebhooks::class,\n Commands\\Migrate\\MigrateTeamRegionCommand::class,\n Commands\\ManageScimForTeam::class,\n Commands\\Dialers\\SyncUsersCommand::class,\n Commands\\WhichWorkerIsWorkingOnWhichJob::class,\n Commands\\GroupSetDefaultLanguageCommand::class,\n Commands\\Dev\\AddRateLimitCommand::class,\n Commands\\Dev\\ImportCallsCommand::class,\n Commands\\DealInsights\\BuildDealInsightsLayoutCommand::class,\n Commands\\DealInsights\\DeleteAskJiminnyDealPrompts::class,\n Commands\\Crm\\MatchCrmObjectsCommand::class,\n Commands\\Activities\\SetupIntegration\\EightByEight::class,\n Commands\\Calendars\\RemoveCalendarEventActivitiesCommand::class,\n Commands\\Activities\\Migrator\\MigrateFromGongCommand::class,\n Commands\\Activities\\Migrator\\MigrateFromChorusCommand::class,\n Commands\\Activities\\Migrator\\MigrateFromLeexiCommand::class,\n Commands\\Activities\\Migrator\\MigrateFromAvomaCommand::class,\n Commands\\Activities\\Migrator\\MigrateFromClariCommand::class,\n Commands\\Activities\\SetupIntegration\\ConnectAndSell::class,\n Commands\\Activities\\SetupIntegration\\CloudTalk::class,\n Commands\\Users\\CreateConferenceSlug::class,\n Commands\\Elasticsearch\\AsyncUpdateEsEntities::class,\n Commands\\Elasticsearch\\ResetAsyncElasticSearchCommand::class,\n Commands\\Playlists\\PlaylistSharesUpdateCommand::class,\n Commands\\Crm\\AutologDelayedCommand::class,\n Commands\\Activities\\HydrateDefaultActivityTypeCommand::class,\n Commands\\Crm\\CheckActivityLoggableCommand::class,\n Commands\\Activities\\MonitorDialerActivitiesCommand::class,\n Commands\\Activities\\SetupIntegration\\Xant::class,\n Commands\\ImportUsersFromCsvFile::class,\n Commands\\DevPostmanCommand::class,\n Commands\\Playlists\\FixTreeStructureCommand::class,\n Commands\\Zoom\\ResolvePmiLinksCommand::class,\n Commands\\MarkBranchForEnvironmentPipelineCommand::class,\n Commands\\Activities\\ProbeMediaSegmentsCommand::class,\n Commands\\Activities\\SetupIntegration\\AmazonConnect::class,\n Commands\\Playbooks\\ChangePlaybookActivityFieldCommand::class,\n MediaPipelineRestartCommand::class,\n Commands\\Dev\\FixHubSpotTokens::class,\n Commands\\Dev\\MonitorSocialAccountsState::class,\n Commands\\Activities\\SetupIntegration\\Vonage::class,\n Commands\\Activities\\SetupIntegration\\TwilioFlex::class,\n Commands\\Activities\\SetupIntegration\\TwilioFlexDirect::class,\n Commands\\Activities\\SetupIntegration\\TwilioFlexSetDialerAuthCredentialsCommand::class,\n Commands\\Activities\\SetupIntegration\\TwilioSetS3RecordingCredentialsCommand::class,\n SendActionItemsCommand::class,\n Commands\\Users\\ChangeEmail::class,\n Commands\\Calendars\\ListUserGoogleCalendars::class,\n Commands\\Activities\\JustCall\\SyncPlaybackLinkToCrmCommand::class,\n Commands\\Activities\\HydrateCallWithCrmDataCommand::class,\n Commands\\Activities\\UpdateActivityElasticSearchDocumentCommand::class,\n Commands\\Activities\\SetupIntegration\\Talkdesk::class,\n Commands\\Transcription\\Microsoft\\TranscriptionProviderMicrosoftWebhookRegisterCommand::class,\n Commands\\Transcription\\Microsoft\\TranscriptionProviderMicrosoftWebhookListCommand::class,\n Commands\\Transcription\\Microsoft\\TranscriptionProviderMicrosoftWebhookShow::class,\n Commands\\Transcription\\Microsoft\\TranscriptionProviderMicrosoftWebhookDeleteCommand::class,\n Commands\\Activities\\SetupIntegration\\TwilioVideo::class,\n Commands\\Crm\\SetupCloseCrm::class,\n Commands\\Crm\\SetupCopperCrm::class,\n Commands\\Crm\\FullSyncOpportunityCommand::class,\n Commands\\Crm\\IntegrationApp\\CrmEntitiesFullSyncCommand::class,\n Commands\\Crm\\IntegrationApp\\ValidateConnectionCommand::class,\n Commands\\Activities\\Workflow\\RefreshCrmData::class,\n Commands\\Activities\\Migrator\\AnalyseGongCalls::class,\n Commands\\Users\\AddVoiceRoleToRecorderCommand::class,\n Commands\\Activities\\SyncMissingCallDispositions::class,\n Commands\\Calendars\\RemoveFutureCalendarEvents::class,\n FlushRolesPermissionsCache::class,\n Commands\\Activities\\SetupIntegration\\FiveNine::class,\n CalendarEventDeleteCancelledCommand::class,\n CalendarEventDeletePastCommand::class,\n ReportActivityProcessingTimeToDatadogCommand::class,\n ReportProcessingStatesToDatadogCommand::class,\n ReleaseNumbersCommand::class,\n BackfillOpportunityUserFromAccountCommand::class,\n RemoveExpiredRoleChangeEventsCommand::class,\n RemoveExpiredNudgesCommand::class,\n SendNudgeExpirationWarningsCommand::class,\n AutologOldActivitiesCommand::class,\n RemoveUnusedParticipantSpeechesCommand::class,\n DeleteActivitiesForChurnedTeamsCommand::class,\n HardDeleteActivitiesForChurnedTeamsCommand::class,\n TeamDeleteCommand::class,\n TeamsDeleteDeactivatedCommand::class,\n UpdateTeamsCommand::class,\n OverrideTranscriptionLocaleCommand::class,\n SyncSlackUserCommand::class,\n PurgeSoftDeletedOpportunitiesCommand::class,\n PurgeSyncBatchesCommand::class,\n ProphetAnalyzeClosedDealsCommand::class,\n DeleteChurnedSubAccounts::class,\n Commands\\ProphetAi\\DumpContext::class,\n DeletePredefinedSubAccounts::class,\n DeleteActivitiesForRetentionTeamsCommand::class,\n HardDeleteActivitiesTeamsCommand::class,\n TeamsDeleteRetentionCommand::class,\n TeamSettingPutCommand::class,\n StopHangingLivestreamsCommand::class,\n FixActivitiesOpportunity::class,\n Commands\\Activities\\SetupIntegration\\Salesforce\\SetupSalesforceIntegrationCommand::class,\n UpdateOldTranscriptionModelLocalesCommand::class,\n Commands\\Dev\\FixMissMatchedCrmActivitiesCommand::class,\n DownloadMissingTrackCommand::class,\n ActivitiesMatchCrmCommand::class,\n DeleteEmailDocumentsCommand::class,\n DeleteOldTranscriptionsCommand::class,\n DeleteS3LeftoversCommand::class,\n RemoveDeleteMarkersCommand::class,\n SyncTeamUsersCommand::class,\n ReassignTranscriptCommand::class,\n DiarizeViaAiParticipantIdentificationCommand::class,\n RestoreActivityTypeCommand::class,\n DeleteOldAiCrmNotesCommand::class,\n DeleteReportCommand::class,\n AutomatedReportsRetentionPolicyCommand::class,\n SyncHubspotActiveDeals::class,\n GenerateInternalWebhookToken::class,\n IssueMcpTokenCommand::class,\n RestoreActivityCrmProviderIdCommand::class,\n CleanupActivityTracksCommand::class,\n DeleteUnusedTracksCommand::class,\n RestoreTracksCommand::class,\n HubspotWebhookServiceCommand::class,\n ProcessMergedObjectsCommand::class,\n HubspotJournalPollingCommand::class,\n SetupJournalDealWebhookSubscriptionsCommand::class,\n ListJournalWebhookSubscriptionsCommand::class,\n RemoveGhostParticipantsCommand::class,\n AutodetectAiActivityTypeCommand::class,\n Commands\\Crm\\LogActivitiesCommand::class,\n Commands\\Crm\\MatchOpportunityActivitiesCommand::class,\n PurgeDeletedOpportunitiesCommand::class,\n CleanDuplicateFieldDataCommand::class,\n RetryProspectSummaryCommand::class,\n ProcessHubspotObjectsSyncBatches::class,\n SyncOpportunitiesMissingFieldDataCommand::class,\n RestoreDealAssociationsCommand::class,\n ];\n\n private Schedule $schedule;\n private string $output;\n\n protected function schedule(Schedule $schedule): void\n {\n $this->schedule = $schedule;\n $this->output = config('jiminny.scheduler_log');\n\n $schedule->useCache('redis');\n\n $currentMinute = (int) date('i');\n $currentDay = (int) date('w');\n\n $this->scheduleEveryMinute();\n $this->scheduleEveryTwoMinutes();\n $this->scheduleEveryFiveMinutes();\n $this->scheduleEveryTenMinutes();\n $this->scheduleEveryFifteenMinutes();\n $this->scheduleEveryThirtyMinutes();\n $this->scheduleHourly();\n $this->scheduleDaily();\n $this->scheduleWeekly($currentDay);\n $this->scheduleSpecificTimes();\n $this->scheduleDynamic($currentMinute);\n }\n\n protected function scheduleEveryMinute(): void\n {\n $this->scheduleCommand('meeting-bot:schedule-bot', expiresAt: 1)->everyMinute();\n $this->scheduleCommand('dialers:monitor-activities')->everyMinute();\n $this->scheduleCommand('jiminny:monitor-social-accounts')->everyMinute();\n $this->scheduleCommand('mailbox:skip-lists:refresh')->everyMinute();\n\n $this->schedule->command('mailbox:batch:process', ['--max-batches=15'])\n ->everyMinute()\n ->sendOutputTo($this->output);\n }\n\n protected function scheduleEveryTwoMinutes(): void\n {\n $this->scheduleCommand('conference:monitor:count', [], 2)->everyTwoMinutes();\n }\n\n protected function scheduleEveryFiveMinutes(): void\n {\n $this->scheduleCommand('activity:purge-stale', [], 4)->everyFiveMinutes();\n // Offset by 1 minute to avoid overlap with crm:sync-objects (runs at :14 and :44)\n $this->scheduleCommand('crm:sync-hubspot-objects', [], 4)\n ->cron('1,6,11,16,21,26,31,36,41,46,51,56 * * * *');\n $this->scheduleCommand('mailbox:text-relay:sync')->everyFiveMinutes();\n $this->scheduleCommand('conference:pre-meeting-notification', [], 3)->everyFiveMinutes();\n $this->scheduleCommand('conference:monitor:start', expiresAt: 3)->everyFiveMinutes();\n $this->scheduleCommand('conference:monitor:end', expiresAt: 3)->everyFiveMinutes();\n $this->scheduleCommand('jiminny:fix-hubspot-tokens')->everyFiveMinutes();\n $this->scheduleCommand('conference:pre-meeting-reminder')->everyFiveMinutes()->runInBackground();\n\n $this->schedule->command('mailbox:batch:create')\n ->cron('2-59/5 * * * *')\n ->withoutOverlapping(180)\n ->onOneServer()\n ->sendOutputTo($this->output);\n\n $this->schedule->command('mailbox:batch:retry-failed', ['--max-batches=15'])\n ->cron('3-59/5 * * * *')\n ->withoutOverlapping(180)\n ->onOneServer()\n ->sendOutputTo($this->output)\n ->runInBackground();\n\n $this->schedule->command('hubspot:journal-poll', ['--start'])\n ->everyFiveMinutes()\n ->sendOutputTo($this->output)\n ->runInBackground();\n }\n\n protected function scheduleEveryTenMinutes(): void\n {\n $this->scheduleCommand('jiminny:transcription:retry-failed')->everyTenMinutes();\n $this->scheduleCommand('activity:notify-not-logged')->cron('6,16,26,36,46,56 * * * *');\n $this->scheduleCommand('activity:status-count')->cron('6,16,26,36,46,56 * * * *');\n $this->scheduleCommand('mailbox:sync')->cron('6,16,26,36,46,56 * * * *');\n $this->scheduleCommand('crm:reset-governor')->everyTenMinutes();\n }\n\n protected function scheduleEveryFifteenMinutes(): void\n {\n $this->scheduleCommand('datadog:report:processing-sla-activities')->everyFifteenMinutes();\n $this->scheduleCommand('calendar:sync', ['--dateMode=daily'], 14)->cron('13,28,43,58 * * * *');\n $this->scheduleCommand('activity:aircall:check-and-renew')->cron('9,24,39,54 * * * *');\n $this->scheduleCommand('track:retry-failed-downloads')->cron('9,24,39,54 * * * *');\n $this->scheduleCommand('crm:autolog-delayed')->cron('3,18,33,48 * * * *');\n\n $this->scheduleCommand('activity:sync', [\n '--from' => now()->subMinutes(16)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--skipProviders' => [\n Activity::PROVIDER_RINGCENTRAL,\n Activity::PROVIDER_AVAYA,\n Activity::PROVIDER_TELUS,\n Activity::PROVIDER_TALKDESK,\n ],\n ])->everyFifteenMinutes();\n\n $this->scheduleCommand('activity:sync', [\n Activity::PROVIDER_RINGCENTRAL,\n Activity::PROVIDER_AVAYA,\n Activity::PROVIDER_TELUS,\n Activity::PROVIDER_TALKDESK,\n '--from' => now()->subMinutes(16)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n ])->cron('7,22,37,52 * * * *');\n }\n\n protected function scheduleEveryThirtyMinutes(): void\n {\n $this->scheduleCommand('crm:sync-objects')->cron('14,44 * * * *');\n $this->scheduleCommand('mailbox:batch:fail-stalled')->everyThirtyMinutes();\n\n $this->scheduleCommand('activities:delete-activities-for-deactivated-teams', expiresAt: 5)\n ->between('02:58', '05:29')\n ->everyThirtyMinutes()\n ->runInBackground();\n\n $this->scheduleActivitiesHardDelete();\n }\n\n protected function scheduleHourly(): void\n {\n $this->scheduleCommand('jiminny:transcription:retry-stuck')->hourly();\n $this->scheduleCommand('twilio:recover-tracks')->cron('22 * * * *');\n $this->scheduleCommand('dialers:sync-users')->cron('22 * * * *');\n $this->scheduleCommand('datadog:report:failed-processing-states')->cron('22 * * * *');\n $this->scheduleCommand('automated-reports:send')->hourly();\n $this->scheduleCommand('deal-insights:send-update')->hourlyAt(0);\n $this->scheduleCommand('crm:integration-app-validate-team-connection')->hourlyAt(23);\n }\n\n protected function scheduleDaily(): void\n {\n $this->scheduleCommand('teams:sync-planhat')->daily();\n $this->scheduleCommand('twilio:sync-addresses')->daily();\n $this->scheduleCommand('twilio:sync-zone-access')->daily();\n $this->scheduleCommand('mailbox:text-relay:watch-text-events')->daily();\n $this->scheduleCommand('users:sync-licence-data')->daily();\n $this->scheduleCommand('users:sync-intercom-data')->daily();\n $this->scheduleCommand('nudges:send-expiration-warnings')->daily();\n $this->scheduleCommand('nudges-data-clean-up', ['--deleteExpiredNudges'])->daily();\n }\n\n protected function scheduleWeekly(int $currentDay): void\n {\n if ($currentDay === 0) {\n $this->scheduleCommand('crm:update-opp-specs')->weeklyOn(0);\n }\n\n if ($currentDay === 6) {\n $this->scheduleCommand('jiminny:acl:remove-expired-role-change-events')->saturdays();\n $this->scheduleCommand('activity:sync', [\n Activity::PROVIDER_AMAZON_CONNECT,\n '--from' => now()->subDays(7)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n ])->saturdays()->at('01:00')->runInBackground();\n $this->scheduleCommand('calendar:event:delete-past', ['--force'], 60)\n ->saturdays()->at('01:07')->runInBackground();\n $this->scheduleCommand('calendar:event:delete-cancelled', ['--force'], 60 * 47 + 52)\n ->saturdays()->at('05:08')->runInBackground();\n $this->scheduleCommand('nudges-data-clean-up --squashNudgeRuns')\n ->weeklyOn(6, '6:00');\n $this->scheduleCommand('nudges-data-clean-up --pruneOldRuns --retentionDays=35')\n ->weeklyOn(6, '7:00');\n }\n }\n\n protected function scheduleSpecificTimes(): void\n {\n $this->scheduleCommand('deal-risks:calculate', ['--cronjob'])->dailyAt('00:00');\n\n $this->scheduleCommand(DeleteInboxEmailsCommand::NAME, [\n '--status' => InboxEmail::STATUS_DISCARDED,\n '--to' => now()->subWeeks(2)->format('Y-m-d'),\n ])->saturdays()->at('00:20')->runInBackground();\n\n $this->scheduleCommand(DeleteInboxEmailsCommand::NAME, [\n '--status' => InboxEmail::STATUS_PROCESSED,\n '--to' => now()->subWeeks(2)->format('Y-m-d'),\n ])->saturdays()->at('00:30')->runInBackground();\n\n $this->scheduleCommand('automated-reports')->dailyAt('01:00');\n $this->scheduleCommand('crm:sync-team-metadata')->dailyAt('01:05');\n $this->scheduleCommand('crm:sync-profile-metadata')->dailyAt('01:05');\n $this->scheduleCommand('calendar:sync-deleted-events')->dailyAt('01:10');\n $this->scheduleCommand('teams:delete-retention')->dailyAt('02:55');\n $this->scheduleCommand('teams:delete-deactivated')->dailyAt('02:58');\n $this->scheduleCommand('twilio:remote-lifecycle')->dailyAt('03:00');\n\n $this->scheduleCommand('activity:sync', [\n Activity::PROVIDER_VONAGE,\n Activity::PROVIDER_FIVE_NINE,\n '--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n ])->dailyAt('03:05');\n\n\n $this->scheduleCommand('activities:delete-retention-teams', expiresAt: 240)->dailyAt('03:04');\n $this->scheduleCommand('automated-reports:run-retention-policy', expiresAt: 120)->dailyAt('03:15');\n $this->scheduleCommand('stop:hanging:livestreams')->dailyAt('03:30');\n $this->scheduleCommand('crm:purge-sync-batches')->dailyAt('03:45');\n $this->scheduleCommand('twilio:sync-numbers')->dailyAt('04:00');\n\n if (! $this->app->environment('production')) {\n $this->scheduleCommand('activities:hard-delete', ['--limit' => 1000, '--jobs' => 5], 60)\n ->dailyAt('04:02')->runInBackground();\n }\n\n $this->scheduleCommand('crm:full-sync-opportunity')->dailyAt('05:00');\n\n $this->scheduleCommand('activity:sync', [\n '--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--skipProviders' => [\n Activity::PROVIDER_VONAGE,\n Activity::PROVIDER_FIVE_NINE,\n ],\n ])->dailyAt('05:05');\n\n if (! $this->app->environment('qa')) {\n $this->scheduleCommand('ai-crm-notes:delete-old')->dailyAt('07:00');\n }\n\n $this->scheduleCommand('activity:sync-dispositions', [\n Activity::PROVIDER_HUBSPOT,\n '--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n ])->dailyAt('07:05');\n }\n\n protected function scheduleDynamic(int $currentMinute): void\n {\n $this->scheduleHourlyFallbackActivitySyncs($currentMinute);\n $this->scheduleBullhornHeartbeat($currentMinute);\n }\n\n private function scheduleHourlyFallbackActivitySyncs(int $offsetMinute): void\n {\n if ($offsetMinute === 0) {\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUD_TALK, 3, 0);\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_VONAGE, 6, 0);\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUDCALL, 3, 0);\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUDCALL_US, 3, 0);\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_FIVE_NINE, 3, 0);\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_HUBSPOT, 1, 0);\n } elseif ($offsetMinute === 1) {\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_RINGCENTRAL, Constants::RINGCENTRAL_CALL_LOG_LOOK_BACK_HOURS, 1);\n } elseif ($offsetMinute === 2) {\n $this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_AVAYA, Constants::RINGCENTRAL_CALL_LOG_LOOK_BACK_HOURS, 2);\n }\n }\n\n private function scheduleBullhornHeartbeat(int $currentMinute): void\n {\n $bhHeartbeatInterval = config('services.bullhorn.heartbeatInterval', 0);\n if ($bhHeartbeatInterval > 0) {\n $minutes = max((int) floor($bhHeartbeatInterval / 60), 1);\n if ($currentMinute % $minutes === 0) {\n $bhEvent = $this->scheduleCommand('crm:bullhorn:ping', ['--heartbeat']);\n if ($minutes > 30) {\n $bhEvent->hourly();\n } else {\n $bhEvent->cron(sprintf('*/%d * * * *', $minutes));\n }\n }\n }\n }\n\n private function scheduleActivitiesHardDelete(): void\n {\n if (config(key: 'jiminny.deploy_region') === 'eu') {\n $this->scheduleCommand(\n name: 'activities:hard-delete',\n options: ['--limit' => 1000, '--jobs' => 20],\n expiresAt: 29\n )\n ->between('02:59', '07:02')->everyThirtyMinutes()\n ->runInBackground();\n } elseif ($this->app->environment('production')) {\n $this->scheduleCommand(\n name: 'activities:hard-delete',\n options: ['--limit' => 2000, '--jobs' => 20],\n expiresAt: 29\n )\n ->between('02:59', '07:02')->everyThirtyMinutes()\n ->runInBackground();\n }\n }\n\n private function scheduleHourlyFallbackActivitySync(string $provider, int $hours, int $offsetMinute = 0): void\n {\n $this->scheduleCommand('activity:sync', [\n $provider,\n '--from' => now()->subHours($hours)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n '--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),\n ])->hourlyAt($offsetMinute);\n }\n\n /**\n * Register the Closure based commands for the application.\n */\n protected function commands(): void\n {\n require_once base_path('routes/console.php');\n }\n\n private function scheduleCommand(string $name, array $options = [], $expiresAt = 60 * 3): Event\n {\n return $this->schedule\n ->command($name, $options)\n ->withoutOverlapping($expiresAt)\n ->onOneServer()\n ->sendOutputTo($this->output)\n ;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-6329127660580569624
|
447903250307436237
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
master, menu
Start Listen Project: faVsco.js, menu
master, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
2
Previous Highlighted Error
Next Highlighted Error
<template>
<AppDrawerModal v-bind="drawerAttrs" #default="{ $style: drawerStyle }">
<div :class="drawerStyle.formGrid">
<div :class="drawerStyle.sectionTitle">General</div>
<!-- Name -->
<AppFormField
field-label="Company name"
v-model="formState.name"
:required="true"
name="name"
rules="required"
data-testid="setup-trial-name"
/>
<!-- Owner Email -->
<AppFormField
v-if="!flags.ownerCreated"
type="email"
field-label="Owner Email"
v-model="formState.owner_email"
:required="true"
name="owner_email"
rules="required|email"
data-testid="setup-trial-owner-email"
/>
<AppFormField
v-else
field-label="Owner"
name="owner_id"
:required="true"
rules="required"
v-model="formState.owner_id"
:options="formData.admins.data || []"
:loading="formData.admins.loading"
type="select"
option-label="name"
track-by="id"
data-testid="setup-trial-owner-email"
/>
<!-- CRM -->
<AppFormField
v-model="formState.crm"
name="crm"
type="select"
field-label="CRM"
:required="true"
rules="required"
:options="formData.crmOptions.data || []"
track-by="id"
option-label="label"
:loading="formData.crmOptions.loading"
data-testid="setup-trial-crm"
:disabled="flags.ownerCreated"
/>
<!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->
<AppFormField
v-if="flags.teamCreated && formData.partners.data?.length > 1"
v-model="formState.partner_id"
name="partner_id"
type="select"
field-label="Partner"
:options="formData.partners.data || []"
track-by="id"
option-label="name"
:loading="formData.partners.loading"
data-testid="setup-trial-partner"
/>
<!-- Opportunity Sync Period -->
<AppFormField
:disabled="!requireSyncPeriod"
v-model="formState.opportunity_sync_period"
name="opportunity_sync_period"
type="select"
field-label="Import Opportunities Sync Period"
:required="requireSyncPeriod"
:rules="requireSyncPeriod ? 'required' : ''"
:options="syncPeriodOptions"
track-by="id"
option-label="label"
data-testid="setup-trial-sync-period"
/>
<!-- Calendar -->
<AppFormField
v-model="formState.calendar"
name="calendar"
type="radios"
ui="radios"
field-label="Calendar"
:required="true"
rules="required"
:options="formData.calendarOptions.data || []"
data-testid="setup-trial-calendar"
:disabled="flags.ownerCreated"
/>
<!-- Softphone -->
<div>
<div :class="[$style.fieldLabel, drawerStyle.fieldLabel]">
Softphone
</div>
<AppFormField
v-model="formState.features"
name="softphone"
type="checkbox"
:value="SOFTPHONE_FEATURE_ID"
:field-label="jiminnyVoiceLabel"
data-testid="setup-trial-softphone"
/>
</div>
<EditTeamAddressFields
v-if="softphoneEnabled"
:disabled="flags.billingDisabled"
/>
</div>
<div :class="$style.tearsGrid">
<div :class="$style.sectionTitle">
<div :class="drawerStyle.sectionTitle">Tiers & Add-ons</div>
<AppButton
icon="question"
label="Tiers explained"
mods="seamless link primary"
href="[URL_WITH_CREDENTIALS]
import useAppForm, {
SilentFormError,
} from "@/components/shared/AppFormElements/useAppForm";
import AppForm from "@/components/shared/AppFormElements/AppForm.vue";
import AppFormField from "@/components/shared/AppFormElements/AppFormField.vue";
import useAsyncData from "@/composables/useAsyncData";
import EditTeamAddressFields from "./EditTeamAddressFields.vue";
import AppDrawerModal from "@/components/shared/modals/AppDrawerModal.vue";
import { useDrawerModal } from "@/composables/useDrawerModal";
import { promptModal } from "jenesius-vue-modal";
import ChangeOwnerConfirmModal from "@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue";
import EventBus from "@/utils/event-bus";
import { getFeaturesData } from "./features";
import FeaturesGroup from "./FeaturesGroup.vue";
import FeaturesList from "./FeaturesList.vue";
import { ErrorMessage, useField } from "vee-validate";
import AppButton from "@/components/shared/Buttons/AppButton.vue";
import { useBrandedI18n } from "@/composables/useBrandedI18n";
// Define props
const props = defineProps({
data: {
type: Object,
required: true,
},
teamId: String,
});
const { tb } = useBrandedI18n();
// Branded i18n computed ref
const jiminnyVoiceLabel = tb("kiosk.edit-team.jiminny-voice--whitelabel");
const flags = reactive({
teamCreated: computed(() => !!props.data.id),
ownerCreated: computed(() => !!props.data.owner_id),
billingDisabled: computed(
() =>
!!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),
),
});
// Setup form
const form = useAppForm({
onSubmit,
toastSuccess: flags.teamCreated
? "Account updated successfully!"
: "Account created successfully!",
});
// Setup form state with initial values
const {
formState,
hasChanges,
updateSnapshot,
exportFormState,
softphoneEnabled,
} = useEditTeamForm(props.data);
// Load required data
const formData = reactive({
calendarOptions: useAsyncData(getCalendars, { showError: true }),
crmOptions: useAsyncData(getCrmServices, { showError: true }),
features: useAsyncData(getFeaturesData, { showError: true }),
partners: useAsyncData(getPartners, { showError: true }),
admins: reactive(useAdminsList()),
});
const { close } = useDrawerModal({ onClose });
const { tierModel, featuresGroups } = useFeaturesManager();
const { requireSyncPeriod } = useRequireSyncPeriod();
const drawerAttrs = computed(() => ({
as: AppForm,
title: flags.teamCreated ? "Edit Organization" : "Setup Account",
headerButtons: [
{
type: "submit",
label: "Save",
variant: "primary",
"data-testid": "setup-trial-submit",
disabled: !unref(hasChanges),
},
],
contentAttrs: {
busy: Object.values(formData).some(({ loading }) => loading),
},
}));
function onClose() {
return modalDiscardGuard({
onSave: form.submitHandler,
hasChanges: unref(hasChanges),
});
}
async function onSubmit() {
const ownerChanged =
flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;
if (ownerChanged) {
const confirmed = await promptModal(ChangeOwnerConfirmModal);
if (!confirmed) throw new SilentFormError("Owner change not confirmed");
}
const data = exportFormState();
// create or update the team
!flags.teamCreated
? await axios.post("/api/v1/settings/organizations", data)
: await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);
EventBus.$emit("team.updated");
// update form snapshot
updateSnapshot();
close();
}
function useFeaturesManager() {
const tierField = useField("tier_id", "required", {
initialValue: unref(formState).tier_id,
});
const tierModel = computed({
get() {
return unref(formState).tier_id;
},
set(tierId) {
setTier(tierId);
tierField.value.value = tierId;
},
});
const featuresGroups = computed(() => {
const { groups } = formData.features.data || {};
if (!groups) return [];
return [groups.TIER, groups["ADD_ON"]].filter(Boolean).flat();
});
function setTier(tierId) {
const selectedFeatures = new Set(unref(formState).features);
const { features, tiers } = formData.features.data;
// clear all tier features
features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));
const tier = tiers.find((tier) => tier.id === tierId);
// select only selected tiers features
[...tier.inherits, tierId]
.map((tierId) => features.byTier[tierId] || [])
.flat()
.forEach((feature) => selectedFeatures.add(feature.id));
Object.assign(unref(formState), {
features: Array.from(selectedFeatures),
tier_id: tierId,
});
}
return { tierModel, setTier, featuresGroups };
}
function useRequireSyncPeriod() {
// Computed property to check if opportunity sync period is required
const requireSyncPeriod = computed(() => {
return !!formData.crmOptions.data?.find(
(item) => formState.value.crm === item.id,
)?.requireInitialSyncPeriod;
});
watch(requireSyncPeriod, (required) => {
formState.value.opportunity_sync_period = required
? formState.value.opportunity_sync_period ||
DEFAULT_OPPORTUNITY_SYNC_PERIOD
: null;
});
return { requireSyncPeriod };
}
function useAdminsList() {
return useAsyncData(async () => {
const data = await fetchUsersData(props.data.id);
return data.filter((user) => user.roles?.some((e) => e.name == "admin"));
});
}
</script>
<style lang="less" module>
.fieldLabel:has(~ * :disabled) {
opacity: 0.6;
}
.tearsGrid {
display: grid;
padding-top: 10px;
gap: 10px;
.sectionTitle {
margin-top: 30px;
display: flex;
justify-content: space-between;
}
}
.errorMessage {
color: var(--color-danger);
}
.docsRef {
font-size: 14px;
}
</style>
Sync Changes
Hide This Notification
Code changed:
Hide
6
17
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Console;
use Illuminate\Console\ConfirmableTrait;
use Illuminate\Console\Scheduling\Event;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use Jiminny\Component\Acl\RemoveExpiredRoleChangeEventsCommand;
use Jiminny\Component\ActionItems\Commands\SendActionItemsCommand;
use Jiminny\Component\AiActivityType\Commands\AutodetectAiActivityTypeCommand;
use Jiminny\Component\AskJiminnyAi\Commands\ProphetAnalyzeClosedDealsCommand;
use Jiminny\Component\Cache\Constants;
use Jiminny\Component\DealInsights\Commands\SendDealsUpdateCommand;
use Jiminny\Component\MediaPipeline\Command\MediaPipelineRestartCommand;
use Jiminny\Component\MediaPipeline\Command\ReportActivityProcessingTimeToDatadogCommand;
use Jiminny\Component\MediaPipeline\Command\ReportProcessingStatesToDatadogCommand;
use Jiminny\Component\Transcription\Commands\OverrideTranscriptionLocaleCommand;
use Jiminny\Component\Transcription\Commands\RetryFailedTranscriptionsCommand;
use Jiminny\Component\Transcription\Commands\RetryStuckTranscriptionsCommand;
use Jiminny\Console\Commands\Activities\ActivitiesMatchCrmCommand;
use Jiminny\Console\Commands\Activities\AutologOldActivitiesCommand;
use Jiminny\Console\Commands\Activities\DeleteActivitiesForChurnedTeamsCommand;
use Jiminny\Console\Commands\Activities\DeleteActivitiesForRetentionTeamsCommand;
use Jiminny\Console\Commands\Activities\DownloadMissingTrackCommand;
use Jiminny\Console\Commands\Activities\FixActivitiesOpportunity;
use Jiminny\Console\Commands\Activities\HardDeleteActivitiesForChurnedTeamsCommand;
use Jiminny\Console\Commands\Activities\HardDeleteActivitiesTeamsCommand;
use Jiminny\Console\Commands\Activities\ReassignTranscriptCommand;
use Jiminny\Console\Commands\Activities\ReindexRecentActivitiesCommand;
use Jiminny\Console\Commands\Activities\RetryProspectSummaryCommand;
use Jiminny\Console\Commands\Calendars\Events\CalendarEventDeleteCancelledCommand;
use Jiminny\Console\Commands\Calendars\Events\CalendarEventDeletePastCommand;
use Jiminny\Console\Commands\Crm\BackfillOpportunityUserFromAccountCommand;
use Jiminny\Console\Commands\Crm\CleanDuplicateFieldDataCommand;
use Jiminny\Console\Commands\Crm\Hubspot\ProcessMergedObjectsCommand;
use Jiminny\Console\Commands\Crm\Hubspot\RestoreDealAssociationsCommand;
use Jiminny\Console\Commands\Crm\ProcessHubspotObjectsSyncBatches;
use Jiminny\Console\Commands\Crm\PurgeDeletedOpportunitiesCommand;
use Jiminny\Console\Commands\Crm\Hubspot\ListJournalWebhookSubscriptionsCommand;
use Jiminny\Console\Commands\Crm\Hubspot\SetupJournalDealWebhookSubscriptionsCommand;
use Jiminny\Console\Commands\Crm\SyncHubspotActiveDeals;
use Jiminny\Console\Commands\Crm\SyncOpportunitiesMissingFieldDataCommand;
use Jiminny\Console\Commands\DeleteOldAiCrmNotesCommand;
use Jiminny\Console\Commands\DeleteS3LeftoversCommand;
use Jiminny\Console\Commands\DiarizeViaAiParticipantIdentificationCommand;
use Jiminny\Console\Commands\Elasticsearch\DeleteEmailDocumentsCommand;
use Jiminny\Console\Commands\Elasticsearch\RemoveGhostParticipantsCommand;
use Jiminny\Console\Commands\FlushRolesPermissionsCache;
use Jiminny\Console\Commands\GenerateInternalWebhookToken;
use Jiminny\Console\Commands\IssueMcpTokenCommand;
use Jiminny\Console\Commands\HubspotJournalPollingCommand;
use Jiminny\Console\Commands\HubspotWebhookServiceCommand;
use Jiminny\Console\Commands\Livestream\StopHangingLivestreamsCommand;
use Jiminny\Console\Commands\Mailboxes\DeleteEmailMessagesWithoutActivityCommand;
use Jiminny\Console\Commands\Mailboxes\DeleteInboxEmailsCommand;
use Jiminny\Console\Commands\PurgeSoftDeletedOpportunitiesCommand;
use Jiminny\Console\Commands\PurgeSyncBatchesCommand;
use Jiminny\Console\Commands\RemoveDeleteMarkersCommand;
use Jiminny\Console\Commands\RemoveExpiredNudgesCommand;
use Jiminny\Console\Commands\RemoveUnusedParticipantSpeechesCommand;
use Jiminny\Console\Commands\Reports\AutomatedReportsRetentionPolicyCommand;
use Jiminny\Console\Commands\Reports\DeleteReportCommand;
use Jiminny\Console\Commands\RestoreActivityCrmProviderIdCommand;
use Jiminny\Console\Commands\RestoreActivityTypeCommand;
use Jiminny\Console\Commands\SendNudgeExpirationWarningsCommand;
use Jiminny\Console\Commands\Slack\SyncSlackUserCommand;
use Jiminny\Console\Commands\Teams\SyncTeamUsersCommand;
use Jiminny\Console\Commands\Teams\TeamDeleteCommand;
use Jiminny\Console\Commands\Teams\TeamsDeleteDeactivatedCommand;
use Jiminny\Console\Commands\Teams\TeamsDeleteRetentionCommand;
use Jiminny\Console\Commands\Teams\TeamSettingPutCommand;
use Jiminny\Console\Commands\Teams\UpdateTeamsCommand;
use Jiminny\Console\Commands\Tracks\CleanupActivityTracksCommand;
use Jiminny\Console\Commands\Tracks\DeleteUnusedTracksCommand;
use Jiminny\Console\Commands\Tracks\RestoreTracksCommand;
use Jiminny\Console\Commands\Transcription\DeleteOldTranscriptionsCommand;
use Jiminny\Console\Commands\Transcription\UpdateOldTranscriptionModelLocalesCommand;
use Jiminny\Console\Commands\Twilio\DeleteChurnedSubAccounts;
use Jiminny\Console\Commands\Twilio\DeletePredefinedSubAccounts;
use Jiminny\Console\Commands\Twilio\ReleaseNumbersCommand;
use Jiminny\Jobs\Activity\SyncActivity;
use Jiminny\Models\Activity;
use Jiminny\Models\InboxEmail;
use Jiminny\Services\RecallAI\Commands\ImportRegionMeetingCommand;
use Jiminny\Services\RecallAI\Commands\ScheduleBotCommand;
class Kernel extends ConsoleKernel
{
use ConfirmableTrait;
/**
* The Artisan commands provided by your application.
*
* @var string[]
*/
protected $commands = [
Commands\GeckoExport\GeckoExportTranscriptCommand::class,
Commands\GeckoExport\GeckoExportTranscriptionCommand::class,
Commands\GeckoExport\GeckoExportParticipantSpeechesCommand::class,
Commands\Activities\DeleteForCoachesCommand::class,
ReindexRecentActivitiesCommand::class,
Commands\Crm\BullhornPingCommand::class,
Commands\Crm\BullhornSessionCommand::class,
Commands\Crm\BullhornSearchCommand::class,
Commands\PlaybackThemes\TopicsConsolidateCommand::class,
Commands\PlaybackThemes\PlaybackThemesCopyCommand::class,
Commands\PlaybackThemes\AssignTopicsUsedBySingleTeamCommand::class,
Commands\PlaybackThemes\PlaybackThemesMigrateToVersionsCommand::class,
Commands\Vocabulary\VocabularyCopyCommand::class,
Commands\Transcription\TranscriptionPrintRaw::class,
Commands\Migrate\JiminnyMigratePopulateActivitySourceCommand::class,
Commands\EngagementStats\JiminnyEngagementStatsExplainCommand::class,
Commands\EngagementStatsRegenerateCommand::class,
Commands\Analytics\NumberOfActivitiesPerActivityTypeCommand::class,
Commands\Elasticsearch\MappingRunCommand::class,
Commands\Elasticsearch\MappingInstallCommand::class,
Commands\Elasticsearch\UpdateEsMappingSettingsCommand::class,
Commands\Analytics\TranscriptionWordMatchCommand::class,
Commands\JiminnyCacheClearCommand::class,
Commands\Transcription\TranscriptionSearchCommand::class,
RetryStuckTranscriptionsCommand::class,
RetryFailedTranscriptionsCommand::class,
Commands\JiminnyDebugCommand::class,
Commands\RunAiCallScoringForUntypedActivitiesCommand::class,
Commands\Calendars\SyncCalendars::class,
Commands\Calendars\SyncDeletedEvents::class,
Commands\Twilio\FetchMetrics::class,
Commands\Twilio\FetchEvents::class,
Commands\Twilio\FetchSummary::class,
Commands\Twilio\SyncZoneAccess::class,
Commands\DatabaseTableCount::class,
Commands\PurgeConferences::class,
Commands\ResetElasticSearch::class,
Commands\CreateDatabaseUsers::class,
Commands\Activities\NotifyNotLogged::class,
Commands\Crm\SyncTeamMetadata::class,
Commands\Crm\SyncProfileMetadata::class,
Commands\Crm\SyncContact::class,
Commands\Crm\SyncObjects::class,
Commands\Crm\SyncHubspotObjects::class,
Commands\Crm\SyncAccount::class,
Commands\Crm\ResetGovernorLimits::class,
Commands\Crm\ManageSyncStrategyCommand::class,
Commands\ImportRecording::class,
Commands\TrackImported::class,
Commands\Twilio\RecoverTwilioTracksCommand::class,
Commands\Crm\SetupLayouts::class,
Commands\Tracks\SyncTwilioTracks::class,
Commands\Activities\StatusCount::class,
Commands\Mailboxes\TextRelay\WatchMailboxEvents::class,
Commands\Mailboxes\InboxCreate::class,
Commands\Mailboxes\InboxSync::class,
Commands\Mailboxes\BatchCreate::class,
Commands\Mailboxes\BatchProcess::class,
Commands\Mailboxes\InboxPurge::class,
Commands\Mailboxes\BatchRetryFailed::class,
Commands\Mailboxes\BatchFailStalled::class,
Commands\Mailboxes\SkipListsRefresh::class,
Commands\Mailboxes\SkipListsDump::class,
Commands\Mailboxes\TextRelay\SyncMailbox::class,
Commands\Mailboxes\DeleteInboxEmailsCommand::class,
Commands\Mailboxes\DeleteEmailMessagesCommand::class,
DeleteEmailMessagesWithoutActivityCommand::class,
Commands\Tracks\CheckIntegrity::class,
Commands\Twilio\RemoteLifecycle::class,
Commands\Twilio\SyncNumbers::class,
Commands\Crm\SetupActivityTypeForFollowUp::class,
Commands\Activities\CheckPlayable::class,
Commands\Activities\ActivityDeleteCommand::class,
Commands\Activities\Copy::class,
Commands\Activities\ActivityHardDeleteCommand::class,
Commands\Reports\Team::class,
Commands\Reports\GenerateMarketingReport::class,
Commands\Reports\AutomatedReportsCommand::class,
Commands\Reports\AutomatedReportsSendCommand::class,
Commands\MuteOrganizerChannel::class,
Commands\Tracks\DeleteTracks::class,
Commands\Tracks\RetryDownload::class,
Commands\Tracks\RetryFailedDownloads::class,
Commands\Twilio\SyncAddresses::class,
Commands\Activities\UpdateElasticSearch::class,
Commands\MakeSlackLiveCoachingChatNotesOn::class,
Commands\Activities\PreMeetingNotification::class,
ScheduleBotCommand::class,
ImportRegionMeetingCommand::class,
Commands\Activities\MonitorMeetingCountCommand::class,
Commands\Activities\MonitorMeetingStartCommand::class,
Commands\Activities\MonitorMeetingEndCommand::class,
Commands\SyncActivity::class,
Commands\PhpApm::class,
Commands\Crm\SyncOpportunity::class,
Commands\Crm\SyncLead::class,
Commands\Users\SyncLicenceDataToSalesforce::class,
Commands\Crm\UpdateOpportunitySpecifications::class,
Commands\Users\SyncToIntercom::class,
Commands\Users\SyncToUserPilot::class,
Commands\Teams\SyncToPlanhat::class,
Commands\Twilio\SetZoneAccess::class,
Commands\Users\CreateDefaultSavedSearchesCommand::class,
Commands\Crm\SendNotLogged::class,
Commands\Teams\DeactivateTeamCommand::class,
Commands\Crm\SyncFieldMetadata::class,
Commands\Postmark\SyncEmailTemplatesCommand::class,
Commands\PlaybackThemes\ImportTriggersFromTranslatedCsvCommand::class,
Commands\Activities\PreMeetingReminder::class,
Commands\Activities\CustomerActivitiesExport::class,
Commands\Users\RefreshAccessToken::class,
Commands\Calendars\SetupCalendarSubscription::class,
Commands\Activities\InviteMeetingBot::class,
Commands\Activities\ChangeActivitiesPlaybookCategoryOnPlaybookChange::class,
Commands\Crm\MigrateProvider::class,
Commands\Activities\MigrateLocationFromCalendarEventToActivities::class,
Commands\HelperTruncateCoachingTables::class,
Commands\FixCrossTenantIssues::class,
Commands\Activities\CloudCall\SetupIntegration::class,
Commands\Activities\CloudTalk\FixTimeZone::class,
Commands\Activities\Orum\SetupIntegration::class,
Commands\Activities\JustCall\SetupIntegration::class,
Commands\Activities\RingCentral\AddInboundPromptSupport::class,
Commands\Dialers\Dialpad\SubscribeToWebhooks::class,
Commands\RecalculateDealRisksCommand::class,
SendDealsUpdateCommand::class,
Commands\Activities\SetProviderCapabilitiesField::class,
Commands\Teams\InitiallySetNotificationProviderTeamsTable::class,
Commands\Crm\AddLayoutEntities::class,
Commands\PropagateCoachingFeedbackCreatedAtToSectionFeedbacks::class,
Commands\JiminnyTokenInfoCommand::class,
Commands\JiminnySetEncryptedTokenManagerModeCommand::class,
Commands\EncryptTokensCommand::class,
Commands\Dialers\Aircall\CheckAndRenewWebhooks::class,
Commands\Migrate\MigrateTeamRegionCommand::class,
Commands\ManageScimForTeam::class,
Commands\Dialers\SyncUsersCommand::class,
Commands\WhichWorkerIsWorkingOnWhichJob::class,
Commands\GroupSetDefaultLanguageCommand::class,
Commands\Dev\AddRateLimitCommand::class,
Commands\Dev\ImportCallsCommand::class,
Commands\DealInsights\BuildDealInsightsLayoutCommand::class,
Commands\DealInsights\DeleteAskJiminnyDealPrompts::class,
Commands\Crm\MatchCrmObjectsCommand::class,
Commands\Activities\SetupIntegration\EightByEight::class,
Commands\Calendars\RemoveCalendarEventActivitiesCommand::class,
Commands\Activities\Migrator\MigrateFromGongCommand::class,
Commands\Activities\Migrator\MigrateFromChorusCommand::class,
Commands\Activities\Migrator\MigrateFromLeexiCommand::class,
Commands\Activities\Migrator\MigrateFromAvomaCommand::class,
Commands\Activities\Migrator\MigrateFromClariCommand::class,
Commands\Activities\SetupIntegration\ConnectAndSell::class,
Commands\Activities\SetupIntegration\CloudTalk::class,
Commands\Users\CreateConferenceSlug::class,
Commands\Elasticsearch\AsyncUpdateEsEntities::class,
Commands\Elasticsearch\ResetAsyncElasticSearchCommand::class,
Commands\Playlists\PlaylistSharesUpdateCommand::class,
Commands\Crm\AutologDelayedCommand::class,
Commands\Activities\HydrateDefaultActivityTypeCommand::class,
Commands\Crm\CheckActivityLoggableCommand::class,
Commands\Activities\MonitorDialerActivitiesCommand::class,
Commands\Activities\SetupIntegration\Xant::class,
Commands\ImportUsersFromCsvFile::class,
Commands\DevPostmanCommand::class,
Commands\Playlists\FixTreeStructureCommand::class,
Commands\Zoom\ResolvePmiLinksCommand::class,
Commands\MarkBranchForEnvironmentPipelineCommand::class,
Commands\Activities\ProbeMediaSegmentsCommand::class,
Commands\Activities\SetupIntegration\AmazonConnect::class,
Commands\Playbooks\ChangePlaybookActivityFieldCommand::class,
MediaPipelineRestartCommand::class,
Commands\Dev\FixHubSpotTokens::class,
Commands\Dev\MonitorSocialAccountsState::class,
Commands\Activities\SetupIntegration\Vonage::class,
Commands\Activities\SetupIntegration\TwilioFlex::class,
Commands\Activities\SetupIntegration\TwilioFlexDirect::class,
Commands\Activities\SetupIntegration\TwilioFlexSetDialerAuthCredentialsCommand::class,
Commands\Activities\SetupIntegration\TwilioSetS3RecordingCredentialsCommand::class,
SendActionItemsCommand::class,
Commands\Users\ChangeEmail::class,
Commands\Calendars\ListUserGoogleCalendars::class,
Commands\Activities\JustCall\SyncPlaybackLinkToCrmCommand::class,
Commands\Activities\HydrateCallWithCrmDataCommand::class,
Commands\Activities\UpdateActivityElasticSearchDocumentCommand::class,
Commands\Activities\SetupIntegration\Talkdesk::class,
Commands\Transcription\Microsoft\TranscriptionProviderMicrosoftWebhookRegisterCommand::class,
Commands\Transcription\Microsoft\TranscriptionProviderMicrosoftWebhookListCommand::class,
Commands\Transcription\Microsoft\TranscriptionProviderMicrosoftWebhookShow::class,
Commands\Transcription\Microsoft\TranscriptionProviderMicrosoftWebhookDeleteCommand::class,
Commands\Activities\SetupIntegration\TwilioVideo::class,
Commands\Crm\SetupCloseCrm::class,
Commands\Crm\SetupCopperCrm::class,
Commands\Crm\FullSyncOpportunityCommand::class,
Commands\Crm\IntegrationApp\CrmEntitiesFullSyncCommand::class,
Commands\Crm\IntegrationApp\ValidateConnectionCommand::class,
Commands\Activities\Workflow\RefreshCrmData::class,
Commands\Activities\Migrator\AnalyseGongCalls::class,
Commands\Users\AddVoiceRoleToRecorderCommand::class,
Commands\Activities\SyncMissingCallDispositions::class,
Commands\Calendars\RemoveFutureCalendarEvents::class,
FlushRolesPermissionsCache::class,
Commands\Activities\SetupIntegration\FiveNine::class,
CalendarEventDeleteCancelledCommand::class,
CalendarEventDeletePastCommand::class,
ReportActivityProcessingTimeToDatadogCommand::class,
ReportProcessingStatesToDatadogCommand::class,
ReleaseNumbersCommand::class,
BackfillOpportunityUserFromAccountCommand::class,
RemoveExpiredRoleChangeEventsCommand::class,
RemoveExpiredNudgesCommand::class,
SendNudgeExpirationWarningsCommand::class,
AutologOldActivitiesCommand::class,
RemoveUnusedParticipantSpeechesCommand::class,
DeleteActivitiesForChurnedTeamsCommand::class,
HardDeleteActivitiesForChurnedTeamsCommand::class,
TeamDeleteCommand::class,
TeamsDeleteDeactivatedCommand::class,
UpdateTeamsCommand::class,
OverrideTranscriptionLocaleCommand::class,
SyncSlackUserCommand::class,
PurgeSoftDeletedOpportunitiesCommand::class,
PurgeSyncBatchesCommand::class,
ProphetAnalyzeClosedDealsCommand::class,
DeleteChurnedSubAccounts::class,
Commands\ProphetAi\DumpContext::class,
DeletePredefinedSubAccounts::class,
DeleteActivitiesForRetentionTeamsCommand::class,
HardDeleteActivitiesTeamsCommand::class,
TeamsDeleteRetentionCommand::class,
TeamSettingPutCommand::class,
StopHangingLivestreamsCommand::class,
FixActivitiesOpportunity::class,
Commands\Activities\SetupIntegration\Salesforce\SetupSalesforceIntegrationCommand::class,
UpdateOldTranscriptionModelLocalesCommand::class,
Commands\Dev\FixMissMatchedCrmActivitiesCommand::class,
DownloadMissingTrackCommand::class,
ActivitiesMatchCrmCommand::class,
DeleteEmailDocumentsCommand::class,
DeleteOldTranscriptionsCommand::class,
DeleteS3LeftoversCommand::class,
RemoveDeleteMarkersCommand::class,
SyncTeamUsersCommand::class,
ReassignTranscriptCommand::class,
DiarizeViaAiParticipantIdentificationCommand::class,
RestoreActivityTypeCommand::class,
DeleteOldAiCrmNotesCommand::class,
DeleteReportCommand::class,
AutomatedReportsRetentionPolicyCommand::class,
SyncHubspotActiveDeals::class,
GenerateInternalWebhookToken::class,
IssueMcpTokenCommand::class,
RestoreActivityCrmProviderIdCommand::class,
CleanupActivityTracksCommand::class,
DeleteUnusedTracksCommand::class,
RestoreTracksCommand::class,
HubspotWebhookServiceCommand::class,
ProcessMergedObjectsCommand::class,
HubspotJournalPollingCommand::class,
SetupJournalDealWebhookSubscriptionsCommand::class,
ListJournalWebhookSubscriptionsCommand::class,
RemoveGhostParticipantsCommand::class,
AutodetectAiActivityTypeCommand::class,
Commands\Crm\LogActivitiesCommand::class,
Commands\Crm\MatchOpportunityActivitiesCommand::class,
PurgeDeletedOpportunitiesCommand::class,
CleanDuplicateFieldDataCommand::class,
RetryProspectSummaryCommand::class,
ProcessHubspotObjectsSyncBatches::class,
SyncOpportunitiesMissingFieldDataCommand::class,
RestoreDealAssociationsCommand::class,
];
private Schedule $schedule;
private string $output;
protected function schedule(Schedule $schedule): void
{
$this->schedule = $schedule;
$this->output = config('jiminny.scheduler_log');
$schedule->useCache('redis');
$currentMinute = (int) date('i');
$currentDay = (int) date('w');
$this->scheduleEveryMinute();
$this->scheduleEveryTwoMinutes();
$this->scheduleEveryFiveMinutes();
$this->scheduleEveryTenMinutes();
$this->scheduleEveryFifteenMinutes();
$this->scheduleEveryThirtyMinutes();
$this->scheduleHourly();
$this->scheduleDaily();
$this->scheduleWeekly($currentDay);
$this->scheduleSpecificTimes();
$this->scheduleDynamic($currentMinute);
}
protected function scheduleEveryMinute(): void
{
$this->scheduleCommand('meeting-bot:schedule-bot', expiresAt: 1)->everyMinute();
$this->scheduleCommand('dialers:monitor-activities')->everyMinute();
$this->scheduleCommand('jiminny:monitor-social-accounts')->everyMinute();
$this->scheduleCommand('mailbox:skip-lists:refresh')->everyMinute();
$this->schedule->command('mailbox:batch:process', ['--max-batches=15'])
->everyMinute()
->sendOutputTo($this->output);
}
protected function scheduleEveryTwoMinutes(): void
{
$this->scheduleCommand('conference:monitor:count', [], 2)->everyTwoMinutes();
}
protected function scheduleEveryFiveMinutes(): void
{
$this->scheduleCommand('activity:purge-stale', [], 4)->everyFiveMinutes();
// Offset by 1 minute to avoid overlap with crm:sync-objects (runs at :14 and :44)
$this->scheduleCommand('crm:sync-hubspot-objects', [], 4)
->cron('1,6,11,16,21,26,31,36,41,46,51,56 * * * *');
$this->scheduleCommand('mailbox:text-relay:sync')->everyFiveMinutes();
$this->scheduleCommand('conference:pre-meeting-notification', [], 3)->everyFiveMinutes();
$this->scheduleCommand('conference:monitor:start', expiresAt: 3)->everyFiveMinutes();
$this->scheduleCommand('conference:monitor:end', expiresAt: 3)->everyFiveMinutes();
$this->scheduleCommand('jiminny:fix-hubspot-tokens')->everyFiveMinutes();
$this->scheduleCommand('conference:pre-meeting-reminder')->everyFiveMinutes()->runInBackground();
$this->schedule->command('mailbox:batch:create')
->cron('2-59/5 * * * *')
->withoutOverlapping(180)
->onOneServer()
->sendOutputTo($this->output);
$this->schedule->command('mailbox:batch:retry-failed', ['--max-batches=15'])
->cron('3-59/5 * * * *')
->withoutOverlapping(180)
->onOneServer()
->sendOutputTo($this->output)
->runInBackground();
$this->schedule->command('hubspot:journal-poll', ['--start'])
->everyFiveMinutes()
->sendOutputTo($this->output)
->runInBackground();
}
protected function scheduleEveryTenMinutes(): void
{
$this->scheduleCommand('jiminny:transcription:retry-failed')->everyTenMinutes();
$this->scheduleCommand('activity:notify-not-logged')->cron('6,16,26,36,46,56 * * * *');
$this->scheduleCommand('activity:status-count')->cron('6,16,26,36,46,56 * * * *');
$this->scheduleCommand('mailbox:sync')->cron('6,16,26,36,46,56 * * * *');
$this->scheduleCommand('crm:reset-governor')->everyTenMinutes();
}
protected function scheduleEveryFifteenMinutes(): void
{
$this->scheduleCommand('datadog:report:processing-sla-activities')->everyFifteenMinutes();
$this->scheduleCommand('calendar:sync', ['--dateMode=daily'], 14)->cron('13,28,43,58 * * * *');
$this->scheduleCommand('activity:aircall:check-and-renew')->cron('9,24,39,54 * * * *');
$this->scheduleCommand('track:retry-failed-downloads')->cron('9,24,39,54 * * * *');
$this->scheduleCommand('crm:autolog-delayed')->cron('3,18,33,48 * * * *');
$this->scheduleCommand('activity:sync', [
'--from' => now()->subMinutes(16)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--skipProviders' => [
Activity::PROVIDER_RINGCENTRAL,
Activity::PROVIDER_AVAYA,
Activity::PROVIDER_TELUS,
Activity::PROVIDER_TALKDESK,
],
])->everyFifteenMinutes();
$this->scheduleCommand('activity:sync', [
Activity::PROVIDER_RINGCENTRAL,
Activity::PROVIDER_AVAYA,
Activity::PROVIDER_TELUS,
Activity::PROVIDER_TALKDESK,
'--from' => now()->subMinutes(16)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
])->cron('7,22,37,52 * * * *');
}
protected function scheduleEveryThirtyMinutes(): void
{
$this->scheduleCommand('crm:sync-objects')->cron('14,44 * * * *');
$this->scheduleCommand('mailbox:batch:fail-stalled')->everyThirtyMinutes();
$this->scheduleCommand('activities:delete-activities-for-deactivated-teams', expiresAt: 5)
->between('02:58', '05:29')
->everyThirtyMinutes()
->runInBackground();
$this->scheduleActivitiesHardDelete();
}
protected function scheduleHourly(): void
{
$this->scheduleCommand('jiminny:transcription:retry-stuck')->hourly();
$this->scheduleCommand('twilio:recover-tracks')->cron('22 * * * *');
$this->scheduleCommand('dialers:sync-users')->cron('22 * * * *');
$this->scheduleCommand('datadog:report:failed-processing-states')->cron('22 * * * *');
$this->scheduleCommand('automated-reports:send')->hourly();
$this->scheduleCommand('deal-insights:send-update')->hourlyAt(0);
$this->scheduleCommand('crm:integration-app-validate-team-connection')->hourlyAt(23);
}
protected function scheduleDaily(): void
{
$this->scheduleCommand('teams:sync-planhat')->daily();
$this->scheduleCommand('twilio:sync-addresses')->daily();
$this->scheduleCommand('twilio:sync-zone-access')->daily();
$this->scheduleCommand('mailbox:text-relay:watch-text-events')->daily();
$this->scheduleCommand('users:sync-licence-data')->daily();
$this->scheduleCommand('users:sync-intercom-data')->daily();
$this->scheduleCommand('nudges:send-expiration-warnings')->daily();
$this->scheduleCommand('nudges-data-clean-up', ['--deleteExpiredNudges'])->daily();
}
protected function scheduleWeekly(int $currentDay): void
{
if ($currentDay === 0) {
$this->scheduleCommand('crm:update-opp-specs')->weeklyOn(0);
}
if ($currentDay === 6) {
$this->scheduleCommand('jiminny:acl:remove-expired-role-change-events')->saturdays();
$this->scheduleCommand('activity:sync', [
Activity::PROVIDER_AMAZON_CONNECT,
'--from' => now()->subDays(7)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
])->saturdays()->at('01:00')->runInBackground();
$this->scheduleCommand('calendar:event:delete-past', ['--force'], 60)
->saturdays()->at('01:07')->runInBackground();
$this->scheduleCommand('calendar:event:delete-cancelled', ['--force'], 60 * 47 + 52)
->saturdays()->at('05:08')->runInBackground();
$this->scheduleCommand('nudges-data-clean-up --squashNudgeRuns')
->weeklyOn(6, '6:00');
$this->scheduleCommand('nudges-data-clean-up --pruneOldRuns --retentionDays=35')
->weeklyOn(6, '7:00');
}
}
protected function scheduleSpecificTimes(): void
{
$this->scheduleCommand('deal-risks:calculate', ['--cronjob'])->dailyAt('00:00');
$this->scheduleCommand(DeleteInboxEmailsCommand::NAME, [
'--status' => InboxEmail::STATUS_DISCARDED,
'--to' => now()->subWeeks(2)->format('Y-m-d'),
])->saturdays()->at('00:20')->runInBackground();
$this->scheduleCommand(DeleteInboxEmailsCommand::NAME, [
'--status' => InboxEmail::STATUS_PROCESSED,
'--to' => now()->subWeeks(2)->format('Y-m-d'),
])->saturdays()->at('00:30')->runInBackground();
$this->scheduleCommand('automated-reports')->dailyAt('01:00');
$this->scheduleCommand('crm:sync-team-metadata')->dailyAt('01:05');
$this->scheduleCommand('crm:sync-profile-metadata')->dailyAt('01:05');
$this->scheduleCommand('calendar:sync-deleted-events')->dailyAt('01:10');
$this->scheduleCommand('teams:delete-retention')->dailyAt('02:55');
$this->scheduleCommand('teams:delete-deactivated')->dailyAt('02:58');
$this->scheduleCommand('twilio:remote-lifecycle')->dailyAt('03:00');
$this->scheduleCommand('activity:sync', [
Activity::PROVIDER_VONAGE,
Activity::PROVIDER_FIVE_NINE,
'--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
])->dailyAt('03:05');
$this->scheduleCommand('activities:delete-retention-teams', expiresAt: 240)->dailyAt('03:04');
$this->scheduleCommand('automated-reports:run-retention-policy', expiresAt: 120)->dailyAt('03:15');
$this->scheduleCommand('stop:hanging:livestreams')->dailyAt('03:30');
$this->scheduleCommand('crm:purge-sync-batches')->dailyAt('03:45');
$this->scheduleCommand('twilio:sync-numbers')->dailyAt('04:00');
if (! $this->app->environment('production')) {
$this->scheduleCommand('activities:hard-delete', ['--limit' => 1000, '--jobs' => 5], 60)
->dailyAt('04:02')->runInBackground();
}
$this->scheduleCommand('crm:full-sync-opportunity')->dailyAt('05:00');
$this->scheduleCommand('activity:sync', [
'--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--skipProviders' => [
Activity::PROVIDER_VONAGE,
Activity::PROVIDER_FIVE_NINE,
],
])->dailyAt('05:05');
if (! $this->app->environment('qa')) {
$this->scheduleCommand('ai-crm-notes:delete-old')->dailyAt('07:00');
}
$this->scheduleCommand('activity:sync-dispositions', [
Activity::PROVIDER_HUBSPOT,
'--from' => now()->subDay()->startOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->subDay()->endOfDay()->format(SyncActivity::ALLOWED_DATE_FORMAT),
])->dailyAt('07:05');
}
protected function scheduleDynamic(int $currentMinute): void
{
$this->scheduleHourlyFallbackActivitySyncs($currentMinute);
$this->scheduleBullhornHeartbeat($currentMinute);
}
private function scheduleHourlyFallbackActivitySyncs(int $offsetMinute): void
{
if ($offsetMinute === 0) {
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUD_TALK, 3, 0);
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_VONAGE, 6, 0);
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUDCALL, 3, 0);
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_CLOUDCALL_US, 3, 0);
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_FIVE_NINE, 3, 0);
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_HUBSPOT, 1, 0);
} elseif ($offsetMinute === 1) {
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_RINGCENTRAL, Constants::RINGCENTRAL_CALL_LOG_LOOK_BACK_HOURS, 1);
} elseif ($offsetMinute === 2) {
$this->scheduleHourlyFallbackActivitySync(Activity::PROVIDER_AVAYA, Constants::RINGCENTRAL_CALL_LOG_LOOK_BACK_HOURS, 2);
}
}
private function scheduleBullhornHeartbeat(int $currentMinute): void
{
$bhHeartbeatInterval = config('services.bullhorn.heartbeatInterval', 0);
if ($bhHeartbeatInterval > 0) {
$minutes = max((int) floor($bhHeartbeatInterval / 60), 1);
if ($currentMinute % $minutes === 0) {
$bhEvent = $this->scheduleCommand('crm:bullhorn:ping', ['--heartbeat']);
if ($minutes > 30) {
$bhEvent->hourly();
} else {
$bhEvent->cron(sprintf('*/%d * * * *', $minutes));
}
}
}
}
private function scheduleActivitiesHardDelete(): void
{
if (config(key: 'jiminny.deploy_region') === 'eu') {
$this->scheduleCommand(
name: 'activities:hard-delete',
options: ['--limit' => 1000, '--jobs' => 20],
expiresAt: 29
)
->between('02:59', '07:02')->everyThirtyMinutes()
->runInBackground();
} elseif ($this->app->environment('production')) {
$this->scheduleCommand(
name: 'activities:hard-delete',
options: ['--limit' => 2000, '--jobs' => 20],
expiresAt: 29
)
->between('02:59', '07:02')->everyThirtyMinutes()
->runInBackground();
}
}
private function scheduleHourlyFallbackActivitySync(string $provider, int $hours, int $offsetMinute = 0): void
{
$this->scheduleCommand('activity:sync', [
$provider,
'--from' => now()->subHours($hours)->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
'--to' => now()->startOfMinute()->format(SyncActivity::ALLOWED_DATE_FORMAT),
])->hourlyAt($offsetMinute);
}
/**
* Register the Closure based commands for the application.
*/
protected function commands(): void
{
require_once base_path('routes/console.php');
}
private function scheduleCommand(string $name, array $options = [], $expiresAt = 60 * 3): Event
{
return $this->schedule
->command($name, $options)
->withoutOverlapping($expiresAt)
->onOneServer()
->sendOutputTo($this->output)
;
}
}
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
51175
|
1799
|
70
|
2026-05-18T08:18:35.955422+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779092315955_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/jiminny/app/front-end/src/components faVsco.js – ~/jiminny/app/front-end/src/components/Settings/Kiosk/modals/EditTeamModal/EditTeamModal.vue...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
master, menu
Start Listen Project: faVsco.js, menu
master, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
2
Previous Highlighted Error
Next Highlighted Error...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"master, menu","depth":5,"on_screen":true,"help_text":"Git Branch: master","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-7135408750988645761
|
-8744863431452808250
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
master, menu
Start Listen Project: faVsco.js, menu
master, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
2
Previous Highlighted Error
Next Highlighted Error
iTerm2ShellEditViewSessionScriptsProfilesWindowHelpPreparation for Refi…. in 3h 42 m100% C8• Mon 18 May 11:18:35APP (-zsh)181DOCKERDEV (docker)₴2APP (-zsh)ffmpeg₴4remote: Counting objects: 100% (832/832),done.remote: Compressing objects: 100% (298/298),done.remote: Total 1047 (delta 634), reused 596 (delta 534), pack-reused 215 (from 3)Receiving objects: 100% (1047/1047), 353.16 KiB | 1.56 MiB/s, done.Resolving deltas: 100% (687/687), completed with 107 local objects.From github.com:jiminny/app907c54896c..34656c53edpipedrive-sdk-poc-› origin/pipedrive-sdk-poc03325ec50f..4e7078fd8bJY-18091-upgrade-to-php-8-5APP-> origin/JY-18091-upgrade-to-php-8-5e7d231e163..bc6a3fceбbJY-20725-handle-HS-search-rate-limit-› origin/JY-20725-handle-HS-search-rate-limit* [new branch]JY-20749-user-can-view-recorded-meetings-> origin/JY-20749-user-can-view-recorded-meetings98ca281a04..e0351be069JY-20808-low-priority-indexing-queue-> origin/JY-20808-low-priority-indexing-queue569abb5149..3906a9238aJY-20835-mcp-enable-users-to-get-a-list-of-deals-and-their-details -> origin/JY-20835-mcp-enable-users-to-get-a-list-of-deals-and-their-detailsad6c2a86e8..50eb6afba9* [new branch]JY-20846-mcp-enable-the-ai-to-know-details-about-the-user-> origin/JY-20846-mcp-enable-the-ai-to-know-details-about-the-userJY-20893-chunk-control-per-update-target-> origin/JY-20893-chunk-control-per-update-target31c62924a5..cb4ebf0c36master-> origin/masterUpdating 907c54896c..34656c53edFast-forwardPIPEDRIVE_V2_MIGRATION_TICKETS.md |52+++++++file changed, 52 insertions(+)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (pipedrive-sdk-poc) $ co master.env.localconfig/logging.phpSwitched to branch"master'Your branch is behind 'origin/master' by 31 commits, and can be fast-forwarded.(use "git pull" to update your local branch)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ git pullUpdating 31c62924a5..cb4ebf0c36Fast-forwardapp/Component/ES/Processor/Traits/SelectEntityListTrait.phpapp/Services/Calendar/CalendarActivityService.phpapp/Services/Calendar/Command/MapActivityData.phpdocs/mcp/explorer/explorer.htmldocs/mcp/explorer/explorer.template.htmldocs/mcp/tools-list.jsondocs/mcp/tools.mdtests/Unit/Component/ES/AsyncUpdateElasticSearchTest.phptests/Unit/Component/ES/Listeners/UpdateMultipleTargetsListenerTest.phptests/Unit/Component/ES/Listeners/UpdateSingleTargetListenerTest.phptests/Unit/Component/ES/Processor/TargetEntitiesSelectorTest.phptests/Unit/Component/ES/Processor/Traits/SelectEntityListTraitTest.phptests/Unit/Component/ES/UpdateProcessManagerTest.phptests/Unit/Services/Calendar/CalendarActivityServiceTest.phptests/Unit/Services/Calendar/Command/MapActivityDataTest.php2046106104| 10213731171610691521507815 files changed, 832 insertions(+), 322 deletions(-)lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/app (master) $ |...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
51174
|
1800
|
75
|
2026-05-18T08:18:35.955534+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779092315955_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/jiminny/app/front-end/src/components faVsco.js – ~/jiminny/app/front-end/src/components/Settings/Kiosk/modals/EditTeamModal/EditTeamModal.vue...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
master, menu
Start Listen Project: faVsco.js, menu
master, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
2
Previous Highlighted Error
Next Highlighted Error
<template>
<AppDrawerModal v-bind="drawerAttrs" #default="{ $style: drawerStyle }">
<div :class="drawerStyle.formGrid">
<div :class="drawerStyle.sectionTitle">General</div>
<!-- Name -->
<AppFormField
field-label="Company name"
v-model="formState.name"
:required="true"
name="name"
rules="required"
data-testid="setup-trial-name"
/>
<!-- Owner Email -->
<AppFormField
v-if="!flags.ownerCreated"
type="email"
field-label="Owner Email"
v-model="formState.owner_email"
:required="true"
name="owner_email"
rules="required|email"
data-testid="setup-trial-owner-email"
/>
<AppFormField
v-else
field-label="Owner"
name="owner_id"
:required="true"
rules="required"
v-model="formState.owner_id"
:options="formData.admins.data || []"
:loading="formData.admins.loading"
type="select"
option-label="name"
track-by="id"
data-testid="setup-trial-owner-email"
/>
<!-- CRM -->
<AppFormField
v-model="formState.crm"
name="crm"
type="select"
field-label="CRM"
:required="true"
rules="required"
:options="formData.crmOptions.data || []"
track-by="id"
option-label="label"
:loading="formData.crmOptions.loading"
data-testid="setup-trial-crm"
:disabled="flags.ownerCreated"
/>
<!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->
<AppFormField
v-if="flags.teamCreated && formData.partners.data?.length > 1"
v-model="formState.partner_id"
name="partner_id"
type="select"
field-label="Partner"
:options="formData.partners.data || []"
track-by="id"
option-label="name"
:loading="formData.partners.loading"
data-testid="setup-trial-partner"
/>
<!-- Opportunity Sync Period -->
<AppFormField
:disabled="!requireSyncPeriod"
v-model="formState.opportunity_sync_period"
name="opportunity_sync_period"
type="select"
field-label="Import Opportunities Sync Period"
:required="requireSyncPeriod"
:rules="requireSyncPeriod ? 'required' : ''"
:options="syncPeriodOptions"
track-by="id"
option-label="label"
data-testid="setup-trial-sync-period"
/>
<!-- Calendar -->
<AppFormField
v-model="formState.calendar"
name="calendar"
type="radios"
ui="radios"
field-label="Calendar"
:required="true"
rules="required"
:options="formData.calendarOptions.data || []"
data-testid="setup-trial-calendar"
:disabled="flags.ownerCreated"
/>
<!-- Softphone -->
<div>
<div :class="[$style.fieldLabel, drawerStyle.fieldLabel]">
Softphone
</div>
<AppFormField
v-model="formState.features"
name="softphone"
type="checkbox"
:value="SOFTPHONE_FEATURE_ID"
:field-label="jiminnyVoiceLabel"
data-testid="setup-trial-softphone"
/>
</div>
<EditTeamAddressFields
v-if="softphoneEnabled"
:disabled="flags.billingDisabled"
/>
</div>
<div :class="$style.tearsGrid">
<div :class="$style.sectionTitle">
<div :class="drawerStyle.sectionTitle">Tiers & Add-ons</div>
<AppButton
icon="question"
label="Tiers explained"
mods="seamless link primary"
href="[URL_WITH_CREDENTIALS]
import useAppForm, {
SilentFormError,
} from "@/components/shared/AppFormElements/useAppForm";
import AppForm from "@/components/shared/AppFormElements/AppForm.vue";
import AppFormField from "@/components/shared/AppFormElements/AppFormField.vue";
import useAsyncData from "@/composables/useAsyncData";
import EditTeamAddressFields from "./EditTeamAddressFields.vue";
import AppDrawerModal from "@/components/shared/modals/AppDrawerModal.vue";
import { useDrawerModal } from "@/composables/useDrawerModal";
import { promptModal } from "jenesius-vue-modal";
import ChangeOwnerConfirmModal from "@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue";
import EventBus from "@/utils/event-bus";
import { getFeaturesData } from "./features";
import FeaturesGroup from "./FeaturesGroup.vue";
import FeaturesList from "./FeaturesList.vue";
import { ErrorMessage, useField } from "vee-validate";
import AppButton from "@/components/shared/Buttons/AppButton.vue";
import { useBrandedI18n } from "@/composables/useBrandedI18n";
// Define props
const props = defineProps({
data: {
type: Object,
required: true,
},
teamId: String,
});
const { tb } = useBrandedI18n();
// Branded i18n computed ref
const jiminnyVoiceLabel = tb("kiosk.edit-team.jiminny-voice--whitelabel");
const flags = reactive({
teamCreated: computed(() => !!props.data.id),
ownerCreated: computed(() => !!props.data.owner_id),
billingDisabled: computed(
() =>
!!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),
),
});
// Setup form
const form = useAppForm({
onSubmit,
toastSuccess: flags.teamCreated
? "Account updated successfully!"
: "Account created successfully!",
});
// Setup form state with initial values
const {
formState,
hasChanges,
updateSnapshot,
exportFormState,
softphoneEnabled,
} = useEditTeamForm(props.data);
// Load required data
const formData = reactive({
calendarOptions: useAsyncData(getCalendars, { showError: true }),
crmOptions: useAsyncData(getCrmServices, { showError: true }),
features: useAsyncData(getFeaturesData, { showError: true }),
partners: useAsyncData(getPartners, { showError: true }),
admins: reactive(useAdminsList()),
});
const { close } = useDrawerModal({ onClose });
const { tierModel, featuresGroups } = useFeaturesManager();
const { requireSyncPeriod } = useRequireSyncPeriod();
const drawerAttrs = computed(() => ({
as: AppForm,
title: flags.teamCreated ? "Edit Organization" : "Setup Account",
headerButtons: [
{
type: "submit",
label: "Save",
variant: "primary",
"data-testid": "setup-trial-submit",
disabled: !unref(hasChanges),
},
],
contentAttrs: {
busy: Object.values(formData).some(({ loading }) => loading),
},
}));
function onClose() {
return modalDiscardGuard({
onSave: form.submitHandler,
hasChanges: unref(hasChanges),
});
}
async function onSubmit() {
const ownerChanged =
flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;
if (ownerChanged) {
const confirmed = await promptModal(ChangeOwnerConfirmModal);
if (!confirmed) throw new SilentFormError("Owner change not confirmed");
}
const data = exportFormState();
// create or update the team
!flags.teamCreated
? await axios.post("/api/v1/settings/organizations", data)
: await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);
EventBus.$emit("team.updated");
// update form snapshot
updateSnapshot();
close();
}
function useFeaturesManager() {
const tierField = useField("tier_id", "required", {
initialValue: unref(formState).tier_id,
});
const tierModel = computed({
get() {
return unref(formState).tier_id;
},
set(tierId) {
setTier(tierId);
tierField.value.value = tierId;
},
});
const featuresGroups = computed(() => {
const { groups } = formData.features.data || {};
if (!groups) return [];
return [groups.TIER, groups["ADD_ON"]].filter(Boolean).flat();
});
function setTier(tierId) {
const selectedFeatures = new Set(unref(formState).features);
const { features, tiers } = formData.features.data;
// clear all tier features
features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));
const tier = tiers.find((tier) => tier.id === tierId);
// select only selected tiers features
[...tier.inherits, tierId]
.map((tierId) => features.byTier[tierId] || [])
.flat()
.forEach((feature) => selectedFeatures.add(feature.id));
Object.assign(unref(formState), {
features: Array.from(selectedFeatures),
tier_id: tierId,
});
}
return { tierModel, setTier, featuresGroups };
}
function useRequireSyncPeriod() {
// Computed property to check if opportunity sync period is required
const requireSyncPeriod = computed(() => {
return !!formData.crmOptions.data?.find(
(item) => formState.value.crm === item.id,
)?.requireInitialSyncPeriod;
});
watch(requireSyncPeriod, (required) => {
formState.value.opportunity_sync_period = required
? formState.value.opportunity_sync_period ||
DEFAULT_OPPORTUNITY_SYNC_PERIOD
: null;
});
return { requireSyncPeriod };
}
function useAdminsList() {
return useAsyncData(async () => {
const data = await fetchUsersData(props.data.id);
return data.filter((user) => user.roles?.some((e) => e.name == "admin"));
});
}
</script>
<style lang="less" module>
.fieldLabel:has(~ * :disabled) {
opacity: 0.6;
}
.tearsGrid {
display: grid;
padding-top: 10px;
gap: 10px;
.sectionTitle {
margin-top: 30px;
display: flex;
justify-content: space-between;
}
}
.errorMessage {
color: var(--color-danger);
}
.docsRef {
font-size: 14px;
}
</style>...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"master, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.034242023,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: master","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2","depth":4,"bounds":{"left":0.3480718,"top":0.10055866,"width":0.007978723,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.35771278,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.3650266,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<template>\n <AppDrawerModal v-bind=\"drawerAttrs\" #default=\"{ $style: drawerStyle }\">\n <div :class=\"drawerStyle.formGrid\">\n <div :class=\"drawerStyle.sectionTitle\">General</div>\n <!-- Name -->\n <AppFormField\n field-label=\"Company name\"\n v-model=\"formState.name\"\n :required=\"true\"\n name=\"name\"\n rules=\"required\"\n data-testid=\"setup-trial-name\"\n />\n\n <!-- Owner Email -->\n <AppFormField\n v-if=\"!flags.ownerCreated\"\n type=\"email\"\n field-label=\"Owner Email\"\n v-model=\"formState.owner_email\"\n :required=\"true\"\n name=\"owner_email\"\n rules=\"required|email\"\n data-testid=\"setup-trial-owner-email\"\n />\n <AppFormField\n v-else\n field-label=\"Owner\"\n name=\"owner_id\"\n :required=\"true\"\n rules=\"required\"\n v-model=\"formState.owner_id\"\n :options=\"formData.admins.data || []\"\n :loading=\"formData.admins.loading\"\n type=\"select\"\n option-label=\"name\"\n track-by=\"id\"\n data-testid=\"setup-trial-owner-email\"\n />\n\n <!-- CRM -->\n <AppFormField\n v-model=\"formState.crm\"\n name=\"crm\"\n type=\"select\"\n field-label=\"CRM\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.crmOptions.data || []\"\n track-by=\"id\"\n option-label=\"label\"\n :loading=\"formData.crmOptions.loading\"\n data-testid=\"setup-trial-crm\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->\n <AppFormField\n v-if=\"flags.teamCreated && formData.partners.data?.length > 1\"\n v-model=\"formState.partner_id\"\n name=\"partner_id\"\n type=\"select\"\n field-label=\"Partner\"\n :options=\"formData.partners.data || []\"\n track-by=\"id\"\n option-label=\"name\"\n :loading=\"formData.partners.loading\"\n data-testid=\"setup-trial-partner\"\n />\n\n <!-- Opportunity Sync Period -->\n <AppFormField\n :disabled=\"!requireSyncPeriod\"\n v-model=\"formState.opportunity_sync_period\"\n name=\"opportunity_sync_period\"\n type=\"select\"\n field-label=\"Import Opportunities Sync Period\"\n :required=\"requireSyncPeriod\"\n :rules=\"requireSyncPeriod ? 'required' : ''\"\n :options=\"syncPeriodOptions\"\n track-by=\"id\"\n option-label=\"label\"\n data-testid=\"setup-trial-sync-period\"\n />\n\n <!-- Calendar -->\n <AppFormField\n v-model=\"formState.calendar\"\n name=\"calendar\"\n type=\"radios\"\n ui=\"radios\"\n field-label=\"Calendar\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.calendarOptions.data || []\"\n data-testid=\"setup-trial-calendar\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Softphone -->\n <div>\n <div :class=\"[$style.fieldLabel, drawerStyle.fieldLabel]\">\n Softphone\n </div>\n <AppFormField\n v-model=\"formState.features\"\n name=\"softphone\"\n type=\"checkbox\"\n :value=\"SOFTPHONE_FEATURE_ID\"\n :field-label=\"jiminnyVoiceLabel\"\n data-testid=\"setup-trial-softphone\"\n />\n </div>\n\n <EditTeamAddressFields\n v-if=\"softphoneEnabled\"\n :disabled=\"flags.billingDisabled\"\n />\n\n </div>\n <div :class=\"$style.tearsGrid\">\n <div :class=\"$style.sectionTitle\">\n <div :class=\"drawerStyle.sectionTitle\">Tiers & Add-ons</div>\n <AppButton\n icon=\"question\"\n label=\"Tiers explained\"\n mods=\"seamless link primary\"\n href=\"https://jiminny.atlassian.net/wiki/external/OGRhNWI0NzJjZTc0NDg1YTg5MTU4NGYwZWU3NTc2OGM\"\n :class=\"$style.docsRef\"\n />\n </div>\n <ErrorMessage name=\"tier_id\">\n <div :class=\"$style.errorMessage\">Selecting tier is required</div>\n </ErrorMessage>\n <FeaturesGroup\n v-for=\"group in featuresGroups\"\n :key=\"group.tier?.id || group.type\"\n v-bind=\"{ group, tiers: formData.features.data.tiers }\"\n v-model:tier=\"tierModel\"\n v-model:features=\"formState.features\"\n />\n <template\n v-if=\"\n flags.teamCreated &&\n formData.features.data?.features.byType.DEV?.length\n \"\n >\n <div :class=\"[$style.sectionTitle, drawerStyle.sectionTitle]\">\n Technical Settings\n </div>\n <FeaturesList\n v-model=\"formState.features\"\n :features=\"formData.features.data.features.byType.DEV\"\n />\n </template>\n </div>\n </AppDrawerModal>\n</template>\n<script>\nconst SOFTPHONE_FEATURE_ID = \"DIALER\";\n\n// Options for opportunity sync period\nconst syncPeriodOptions = [\n { id: \"3m\", label: \"3 Months\" },\n { id: \"6m\", label: \"6 Months\" },\n { id: \"12m\", label: \"12 Months\" },\n];\n\nconst DEFAULT_OPPORTUNITY_SYNC_PERIOD = syncPeriodOptions[0].id;\n\nexport const useEditTeamForm = toSelfProvidingHook((data) => {\n const formState = ref({\n features: [],\n ...data,\n });\n\n const formStateSnapshot = ref();\n\n updateSnapshot();\n\n const hasChanges = computed(\n () => !isEqual(formState.value, formStateSnapshot.value),\n );\n\n const softphoneEnabled = computed(() =>\n unref(formState).features?.includes(SOFTPHONE_FEATURE_ID),\n );\n\n function exportFormState() {\n const excluded = [\"softphone\"];\n\n if (!unref(softphoneEnabled)) {\n excluded.push(\"address\", \"city\", \"state\", \"zip\", \"country\");\n }\n\n return omit(formState.value, excluded);\n }\n\n function updateSnapshot() {\n formStateSnapshot.value = cloneDeep(formState.value);\n }\n\n return {\n formState,\n updateSnapshot,\n hasChanges,\n exportFormState,\n softphoneEnabled,\n };\n});\n\n// Data loading functions\nasync function getCalendars() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/calendars\"));\n\n if (!error) return data.data.map(({ id, label }) => ({ value: id, label }));\n\n console.error(error);\n throw new Error(\"Error loading calendars\");\n}\n\nasync function getCrmServices() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/crm-services\"));\n if (!error) return Object.values(data.data);\n\n console.error(error);\n throw new Error(\"Error loading CRM services\");\n}\n\nasync function getPartners() {\n const { error, data } = await tryCatch(\n axios.get(\"/api/v1/kiosk/partners\"),\n );\n if (!error) return data.data.data;\n\n console.error(error);\n throw new Error(\"Error loading partners\");\n}\n\nasync function fetchUsersData(teamId) {\n const { data, status } = await axios.get(\n `/api/v1/kiosk/organizations/${teamId}/users`,\n );\n\n if (status === 200) {\n return data;\n } else {\n throw new Error(\"Error in fetching users data\");\n }\n}\n</script>\n<script setup>\nimport { computed, ref, reactive, watch, unref } from \"vue\";\nimport axios from \"axios\";\nimport { cloneDeep, isEqual, omit } from \"lodash-es\";\nimport { modalDiscardGuard, toSelfProvidingHook, tryCatch } from \"@/utils\";\nimport useAppForm, {\n SilentFormError,\n} from \"@/components/shared/AppFormElements/useAppForm\";\nimport AppForm from \"@/components/shared/AppFormElements/AppForm.vue\";\nimport AppFormField from \"@/components/shared/AppFormElements/AppFormField.vue\";\nimport useAsyncData from \"@/composables/useAsyncData\";\nimport EditTeamAddressFields from \"./EditTeamAddressFields.vue\";\nimport AppDrawerModal from \"@/components/shared/modals/AppDrawerModal.vue\";\nimport { useDrawerModal } from \"@/composables/useDrawerModal\";\nimport { promptModal } from \"jenesius-vue-modal\";\nimport ChangeOwnerConfirmModal from \"@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue\";\nimport EventBus from \"@/utils/event-bus\";\nimport { getFeaturesData } from \"./features\";\nimport FeaturesGroup from \"./FeaturesGroup.vue\";\nimport FeaturesList from \"./FeaturesList.vue\";\nimport { ErrorMessage, useField } from \"vee-validate\";\nimport AppButton from \"@/components/shared/Buttons/AppButton.vue\";\nimport { useBrandedI18n } from \"@/composables/useBrandedI18n\";\n\n// Define props\nconst props = defineProps({\n data: {\n type: Object,\n required: true,\n },\n teamId: String,\n});\n\nconst { tb } = useBrandedI18n();\n\n// Branded i18n computed ref\nconst jiminnyVoiceLabel = tb(\"kiosk.edit-team.jiminny-voice--whitelabel\");\n\nconst flags = reactive({\n teamCreated: computed(() => !!props.data.id),\n ownerCreated: computed(() => !!props.data.owner_id),\n billingDisabled: computed(\n () =>\n !!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),\n ),\n});\n\n// Setup form\nconst form = useAppForm({\n onSubmit,\n toastSuccess: flags.teamCreated\n ? \"Account updated successfully!\"\n : \"Account created successfully!\",\n});\n\n// Setup form state with initial values\nconst {\n formState,\n hasChanges,\n updateSnapshot,\n exportFormState,\n softphoneEnabled,\n} = useEditTeamForm(props.data);\n\n// Load required data\nconst formData = reactive({\n calendarOptions: useAsyncData(getCalendars, { showError: true }),\n crmOptions: useAsyncData(getCrmServices, { showError: true }),\n features: useAsyncData(getFeaturesData, { showError: true }),\n partners: useAsyncData(getPartners, { showError: true }),\n admins: reactive(useAdminsList()),\n});\n\nconst { close } = useDrawerModal({ onClose });\n\nconst { tierModel, featuresGroups } = useFeaturesManager();\n\nconst { requireSyncPeriod } = useRequireSyncPeriod();\n\nconst drawerAttrs = computed(() => ({\n as: AppForm,\n title: flags.teamCreated ? \"Edit Organization\" : \"Setup Account\",\n headerButtons: [\n {\n type: \"submit\",\n label: \"Save\",\n variant: \"primary\",\n \"data-testid\": \"setup-trial-submit\",\n disabled: !unref(hasChanges),\n },\n ],\n contentAttrs: {\n busy: Object.values(formData).some(({ loading }) => loading),\n },\n}));\n\nfunction onClose() {\n return modalDiscardGuard({\n onSave: form.submitHandler,\n hasChanges: unref(hasChanges),\n });\n}\n\nasync function onSubmit() {\n const ownerChanged =\n flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;\n\n if (ownerChanged) {\n const confirmed = await promptModal(ChangeOwnerConfirmModal);\n if (!confirmed) throw new SilentFormError(\"Owner change not confirmed\");\n }\n\n const data = exportFormState();\n\n // create or update the team\n !flags.teamCreated\n ? await axios.post(\"/api/v1/settings/organizations\", data)\n : await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);\n\n EventBus.$emit(\"team.updated\");\n\n // update form snapshot\n updateSnapshot();\n close();\n}\n\nfunction useFeaturesManager() {\n const tierField = useField(\"tier_id\", \"required\", {\n initialValue: unref(formState).tier_id,\n });\n\n const tierModel = computed({\n get() {\n return unref(formState).tier_id;\n },\n set(tierId) {\n setTier(tierId);\n tierField.value.value = tierId;\n },\n });\n\n const featuresGroups = computed(() => {\n const { groups } = formData.features.data || {};\n\n if (!groups) return [];\n\n return [groups.TIER, groups[\"ADD_ON\"]].filter(Boolean).flat();\n });\n\n function setTier(tierId) {\n const selectedFeatures = new Set(unref(formState).features);\n const { features, tiers } = formData.features.data;\n\n // clear all tier features\n features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));\n\n const tier = tiers.find((tier) => tier.id === tierId);\n\n // select only selected tiers features\n [...tier.inherits, tierId]\n .map((tierId) => features.byTier[tierId] || [])\n .flat()\n .forEach((feature) => selectedFeatures.add(feature.id));\n\n Object.assign(unref(formState), {\n features: Array.from(selectedFeatures),\n tier_id: tierId,\n });\n }\n\n return { tierModel, setTier, featuresGroups };\n}\n\nfunction useRequireSyncPeriod() {\n // Computed property to check if opportunity sync period is required\n const requireSyncPeriod = computed(() => {\n return !!formData.crmOptions.data?.find(\n (item) => formState.value.crm === item.id,\n )?.requireInitialSyncPeriod;\n });\n\n watch(requireSyncPeriod, (required) => {\n formState.value.opportunity_sync_period = required\n ? formState.value.opportunity_sync_period ||\n DEFAULT_OPPORTUNITY_SYNC_PERIOD\n : null;\n });\n\n return { requireSyncPeriod };\n}\n\nfunction useAdminsList() {\n return useAsyncData(async () => {\n const data = await fetchUsersData(props.data.id);\n\n return data.filter((user) => user.roles?.some((e) => e.name == \"admin\"));\n });\n}\n</script>\n\n<style lang=\"less\" module>\n.fieldLabel:has(~ * :disabled) {\n opacity: 0.6;\n}\n.tearsGrid {\n display: grid;\n padding-top: 10px;\n gap: 10px;\n .sectionTitle {\n margin-top: 30px;\n display: flex;\n justify-content: space-between;\n }\n}\n.errorMessage {\n color: var(--color-danger);\n}\n.docsRef {\n font-size: 14px;\n}\n</style>","depth":4,"bounds":{"left":0.15990691,"top":0.09736632,"width":0.3081782,"height":0.90263367},"on_screen":true,"value":"<template>\n <AppDrawerModal v-bind=\"drawerAttrs\" #default=\"{ $style: drawerStyle }\">\n <div :class=\"drawerStyle.formGrid\">\n <div :class=\"drawerStyle.sectionTitle\">General</div>\n <!-- Name -->\n <AppFormField\n field-label=\"Company name\"\n v-model=\"formState.name\"\n :required=\"true\"\n name=\"name\"\n rules=\"required\"\n data-testid=\"setup-trial-name\"\n />\n\n <!-- Owner Email -->\n <AppFormField\n v-if=\"!flags.ownerCreated\"\n type=\"email\"\n field-label=\"Owner Email\"\n v-model=\"formState.owner_email\"\n :required=\"true\"\n name=\"owner_email\"\n rules=\"required|email\"\n data-testid=\"setup-trial-owner-email\"\n />\n <AppFormField\n v-else\n field-label=\"Owner\"\n name=\"owner_id\"\n :required=\"true\"\n rules=\"required\"\n v-model=\"formState.owner_id\"\n :options=\"formData.admins.data || []\"\n :loading=\"formData.admins.loading\"\n type=\"select\"\n option-label=\"name\"\n track-by=\"id\"\n data-testid=\"setup-trial-owner-email\"\n />\n\n <!-- CRM -->\n <AppFormField\n v-model=\"formState.crm\"\n name=\"crm\"\n type=\"select\"\n field-label=\"CRM\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.crmOptions.data || []\"\n track-by=\"id\"\n option-label=\"label\"\n :loading=\"formData.crmOptions.loading\"\n data-testid=\"setup-trial-crm\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->\n <AppFormField\n v-if=\"flags.teamCreated && formData.partners.data?.length > 1\"\n v-model=\"formState.partner_id\"\n name=\"partner_id\"\n type=\"select\"\n field-label=\"Partner\"\n :options=\"formData.partners.data || []\"\n track-by=\"id\"\n option-label=\"name\"\n :loading=\"formData.partners.loading\"\n data-testid=\"setup-trial-partner\"\n />\n\n <!-- Opportunity Sync Period -->\n <AppFormField\n :disabled=\"!requireSyncPeriod\"\n v-model=\"formState.opportunity_sync_period\"\n name=\"opportunity_sync_period\"\n type=\"select\"\n field-label=\"Import Opportunities Sync Period\"\n :required=\"requireSyncPeriod\"\n :rules=\"requireSyncPeriod ? 'required' : ''\"\n :options=\"syncPeriodOptions\"\n track-by=\"id\"\n option-label=\"label\"\n data-testid=\"setup-trial-sync-period\"\n />\n\n <!-- Calendar -->\n <AppFormField\n v-model=\"formState.calendar\"\n name=\"calendar\"\n type=\"radios\"\n ui=\"radios\"\n field-label=\"Calendar\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.calendarOptions.data || []\"\n data-testid=\"setup-trial-calendar\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Softphone -->\n <div>\n <div :class=\"[$style.fieldLabel, drawerStyle.fieldLabel]\">\n Softphone\n </div>\n <AppFormField\n v-model=\"formState.features\"\n name=\"softphone\"\n type=\"checkbox\"\n :value=\"SOFTPHONE_FEATURE_ID\"\n :field-label=\"jiminnyVoiceLabel\"\n data-testid=\"setup-trial-softphone\"\n />\n </div>\n\n <EditTeamAddressFields\n v-if=\"softphoneEnabled\"\n :disabled=\"flags.billingDisabled\"\n />\n\n </div>\n <div :class=\"$style.tearsGrid\">\n <div :class=\"$style.sectionTitle\">\n <div :class=\"drawerStyle.sectionTitle\">Tiers & Add-ons</div>\n <AppButton\n icon=\"question\"\n label=\"Tiers explained\"\n mods=\"seamless link primary\"\n href=\"https://jiminny.atlassian.net/wiki/external/OGRhNWI0NzJjZTc0NDg1YTg5MTU4NGYwZWU3NTc2OGM\"\n :class=\"$style.docsRef\"\n />\n </div>\n <ErrorMessage name=\"tier_id\">\n <div :class=\"$style.errorMessage\">Selecting tier is required</div>\n </ErrorMessage>\n <FeaturesGroup\n v-for=\"group in featuresGroups\"\n :key=\"group.tier?.id || group.type\"\n v-bind=\"{ group, tiers: formData.features.data.tiers }\"\n v-model:tier=\"tierModel\"\n v-model:features=\"formState.features\"\n />\n <template\n v-if=\"\n flags.teamCreated &&\n formData.features.data?.features.byType.DEV?.length\n \"\n >\n <div :class=\"[$style.sectionTitle, drawerStyle.sectionTitle]\">\n Technical Settings\n </div>\n <FeaturesList\n v-model=\"formState.features\"\n :features=\"formData.features.data.features.byType.DEV\"\n />\n </template>\n </div>\n </AppDrawerModal>\n</template>\n<script>\nconst SOFTPHONE_FEATURE_ID = \"DIALER\";\n\n// Options for opportunity sync period\nconst syncPeriodOptions = [\n { id: \"3m\", label: \"3 Months\" },\n { id: \"6m\", label: \"6 Months\" },\n { id: \"12m\", label: \"12 Months\" },\n];\n\nconst DEFAULT_OPPORTUNITY_SYNC_PERIOD = syncPeriodOptions[0].id;\n\nexport const useEditTeamForm = toSelfProvidingHook((data) => {\n const formState = ref({\n features: [],\n ...data,\n });\n\n const formStateSnapshot = ref();\n\n updateSnapshot();\n\n const hasChanges = computed(\n () => !isEqual(formState.value, formStateSnapshot.value),\n );\n\n const softphoneEnabled = computed(() =>\n unref(formState).features?.includes(SOFTPHONE_FEATURE_ID),\n );\n\n function exportFormState() {\n const excluded = [\"softphone\"];\n\n if (!unref(softphoneEnabled)) {\n excluded.push(\"address\", \"city\", \"state\", \"zip\", \"country\");\n }\n\n return omit(formState.value, excluded);\n }\n\n function updateSnapshot() {\n formStateSnapshot.value = cloneDeep(formState.value);\n }\n\n return {\n formState,\n updateSnapshot,\n hasChanges,\n exportFormState,\n softphoneEnabled,\n };\n});\n\n// Data loading functions\nasync function getCalendars() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/calendars\"));\n\n if (!error) return data.data.map(({ id, label }) => ({ value: id, label }));\n\n console.error(error);\n throw new Error(\"Error loading calendars\");\n}\n\nasync function getCrmServices() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/crm-services\"));\n if (!error) return Object.values(data.data);\n\n console.error(error);\n throw new Error(\"Error loading CRM services\");\n}\n\nasync function getPartners() {\n const { error, data } = await tryCatch(\n axios.get(\"/api/v1/kiosk/partners\"),\n );\n if (!error) return data.data.data;\n\n console.error(error);\n throw new Error(\"Error loading partners\");\n}\n\nasync function fetchUsersData(teamId) {\n const { data, status } = await axios.get(\n `/api/v1/kiosk/organizations/${teamId}/users`,\n );\n\n if (status === 200) {\n return data;\n } else {\n throw new Error(\"Error in fetching users data\");\n }\n}\n</script>\n<script setup>\nimport { computed, ref, reactive, watch, unref } from \"vue\";\nimport axios from \"axios\";\nimport { cloneDeep, isEqual, omit } from \"lodash-es\";\nimport { modalDiscardGuard, toSelfProvidingHook, tryCatch } from \"@/utils\";\nimport useAppForm, {\n SilentFormError,\n} from \"@/components/shared/AppFormElements/useAppForm\";\nimport AppForm from \"@/components/shared/AppFormElements/AppForm.vue\";\nimport AppFormField from \"@/components/shared/AppFormElements/AppFormField.vue\";\nimport useAsyncData from \"@/composables/useAsyncData\";\nimport EditTeamAddressFields from \"./EditTeamAddressFields.vue\";\nimport AppDrawerModal from \"@/components/shared/modals/AppDrawerModal.vue\";\nimport { useDrawerModal } from \"@/composables/useDrawerModal\";\nimport { promptModal } from \"jenesius-vue-modal\";\nimport ChangeOwnerConfirmModal from \"@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue\";\nimport EventBus from \"@/utils/event-bus\";\nimport { getFeaturesData } from \"./features\";\nimport FeaturesGroup from \"./FeaturesGroup.vue\";\nimport FeaturesList from \"./FeaturesList.vue\";\nimport { ErrorMessage, useField } from \"vee-validate\";\nimport AppButton from \"@/components/shared/Buttons/AppButton.vue\";\nimport { useBrandedI18n } from \"@/composables/useBrandedI18n\";\n\n// Define props\nconst props = defineProps({\n data: {\n type: Object,\n required: true,\n },\n teamId: String,\n});\n\nconst { tb } = useBrandedI18n();\n\n// Branded i18n computed ref\nconst jiminnyVoiceLabel = tb(\"kiosk.edit-team.jiminny-voice--whitelabel\");\n\nconst flags = reactive({\n teamCreated: computed(() => !!props.data.id),\n ownerCreated: computed(() => !!props.data.owner_id),\n billingDisabled: computed(\n () =>\n !!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),\n ),\n});\n\n// Setup form\nconst form = useAppForm({\n onSubmit,\n toastSuccess: flags.teamCreated\n ? \"Account updated successfully!\"\n : \"Account created successfully!\",\n});\n\n// Setup form state with initial values\nconst {\n formState,\n hasChanges,\n updateSnapshot,\n exportFormState,\n softphoneEnabled,\n} = useEditTeamForm(props.data);\n\n// Load required data\nconst formData = reactive({\n calendarOptions: useAsyncData(getCalendars, { showError: true }),\n crmOptions: useAsyncData(getCrmServices, { showError: true }),\n features: useAsyncData(getFeaturesData, { showError: true }),\n partners: useAsyncData(getPartners, { showError: true }),\n admins: reactive(useAdminsList()),\n});\n\nconst { close } = useDrawerModal({ onClose });\n\nconst { tierModel, featuresGroups } = useFeaturesManager();\n\nconst { requireSyncPeriod } = useRequireSyncPeriod();\n\nconst drawerAttrs = computed(() => ({\n as: AppForm,\n title: flags.teamCreated ? \"Edit Organization\" : \"Setup Account\",\n headerButtons: [\n {\n type: \"submit\",\n label: \"Save\",\n variant: \"primary\",\n \"data-testid\": \"setup-trial-submit\",\n disabled: !unref(hasChanges),\n },\n ],\n contentAttrs: {\n busy: Object.values(formData).some(({ loading }) => loading),\n },\n}));\n\nfunction onClose() {\n return modalDiscardGuard({\n onSave: form.submitHandler,\n hasChanges: unref(hasChanges),\n });\n}\n\nasync function onSubmit() {\n const ownerChanged =\n flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;\n\n if (ownerChanged) {\n const confirmed = await promptModal(ChangeOwnerConfirmModal);\n if (!confirmed) throw new SilentFormError(\"Owner change not confirmed\");\n }\n\n const data = exportFormState();\n\n // create or update the team\n !flags.teamCreated\n ? await axios.post(\"/api/v1/settings/organizations\", data)\n : await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);\n\n EventBus.$emit(\"team.updated\");\n\n // update form snapshot\n updateSnapshot();\n close();\n}\n\nfunction useFeaturesManager() {\n const tierField = useField(\"tier_id\", \"required\", {\n initialValue: unref(formState).tier_id,\n });\n\n const tierModel = computed({\n get() {\n return unref(formState).tier_id;\n },\n set(tierId) {\n setTier(tierId);\n tierField.value.value = tierId;\n },\n });\n\n const featuresGroups = computed(() => {\n const { groups } = formData.features.data || {};\n\n if (!groups) return [];\n\n return [groups.TIER, groups[\"ADD_ON\"]].filter(Boolean).flat();\n });\n\n function setTier(tierId) {\n const selectedFeatures = new Set(unref(formState).features);\n const { features, tiers } = formData.features.data;\n\n // clear all tier features\n features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));\n\n const tier = tiers.find((tier) => tier.id === tierId);\n\n // select only selected tiers features\n [...tier.inherits, tierId]\n .map((tierId) => features.byTier[tierId] || [])\n .flat()\n .forEach((feature) => selectedFeatures.add(feature.id));\n\n Object.assign(unref(formState), {\n features: Array.from(selectedFeatures),\n tier_id: tierId,\n });\n }\n\n return { tierModel, setTier, featuresGroups };\n}\n\nfunction useRequireSyncPeriod() {\n // Computed property to check if opportunity sync period is required\n const requireSyncPeriod = computed(() => {\n return !!formData.crmOptions.data?.find(\n (item) => formState.value.crm === item.id,\n )?.requireInitialSyncPeriod;\n });\n\n watch(requireSyncPeriod, (required) => {\n formState.value.opportunity_sync_period = required\n ? formState.value.opportunity_sync_period ||\n DEFAULT_OPPORTUNITY_SYNC_PERIOD\n : null;\n });\n\n return { requireSyncPeriod };\n}\n\nfunction useAdminsList() {\n return useAsyncData(async () => {\n const data = await fetchUsersData(props.data.id);\n\n return data.filter((user) => user.roles?.some((e) => e.name == \"admin\"));\n });\n}\n</script>\n\n<style lang=\"less\" module>\n.fieldLabel:has(~ * :disabled) {\n opacity: 0.6;\n}\n.tearsGrid {\n display: grid;\n padding-top: 10px;\n gap: 10px;\n .sectionTitle {\n margin-top: 30px;\n display: flex;\n justify-content: space-between;\n }\n}\n.errorMessage {\n color: var(--color-danger);\n}\n.docsRef {\n font-size: 14px;\n}\n</style>","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false}]...
|
-7107625684324687790
|
1447135053943622212
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
master, menu
Start Listen Project: faVsco.js, menu
master, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
2
Previous Highlighted Error
Next Highlighted Error
<template>
<AppDrawerModal v-bind="drawerAttrs" #default="{ $style: drawerStyle }">
<div :class="drawerStyle.formGrid">
<div :class="drawerStyle.sectionTitle">General</div>
<!-- Name -->
<AppFormField
field-label="Company name"
v-model="formState.name"
:required="true"
name="name"
rules="required"
data-testid="setup-trial-name"
/>
<!-- Owner Email -->
<AppFormField
v-if="!flags.ownerCreated"
type="email"
field-label="Owner Email"
v-model="formState.owner_email"
:required="true"
name="owner_email"
rules="required|email"
data-testid="setup-trial-owner-email"
/>
<AppFormField
v-else
field-label="Owner"
name="owner_id"
:required="true"
rules="required"
v-model="formState.owner_id"
:options="formData.admins.data || []"
:loading="formData.admins.loading"
type="select"
option-label="name"
track-by="id"
data-testid="setup-trial-owner-email"
/>
<!-- CRM -->
<AppFormField
v-model="formState.crm"
name="crm"
type="select"
field-label="CRM"
:required="true"
rules="required"
:options="formData.crmOptions.data || []"
track-by="id"
option-label="label"
:loading="formData.crmOptions.loading"
data-testid="setup-trial-crm"
:disabled="flags.ownerCreated"
/>
<!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->
<AppFormField
v-if="flags.teamCreated && formData.partners.data?.length > 1"
v-model="formState.partner_id"
name="partner_id"
type="select"
field-label="Partner"
:options="formData.partners.data || []"
track-by="id"
option-label="name"
:loading="formData.partners.loading"
data-testid="setup-trial-partner"
/>
<!-- Opportunity Sync Period -->
<AppFormField
:disabled="!requireSyncPeriod"
v-model="formState.opportunity_sync_period"
name="opportunity_sync_period"
type="select"
field-label="Import Opportunities Sync Period"
:required="requireSyncPeriod"
:rules="requireSyncPeriod ? 'required' : ''"
:options="syncPeriodOptions"
track-by="id"
option-label="label"
data-testid="setup-trial-sync-period"
/>
<!-- Calendar -->
<AppFormField
v-model="formState.calendar"
name="calendar"
type="radios"
ui="radios"
field-label="Calendar"
:required="true"
rules="required"
:options="formData.calendarOptions.data || []"
data-testid="setup-trial-calendar"
:disabled="flags.ownerCreated"
/>
<!-- Softphone -->
<div>
<div :class="[$style.fieldLabel, drawerStyle.fieldLabel]">
Softphone
</div>
<AppFormField
v-model="formState.features"
name="softphone"
type="checkbox"
:value="SOFTPHONE_FEATURE_ID"
:field-label="jiminnyVoiceLabel"
data-testid="setup-trial-softphone"
/>
</div>
<EditTeamAddressFields
v-if="softphoneEnabled"
:disabled="flags.billingDisabled"
/>
</div>
<div :class="$style.tearsGrid">
<div :class="$style.sectionTitle">
<div :class="drawerStyle.sectionTitle">Tiers & Add-ons</div>
<AppButton
icon="question"
label="Tiers explained"
mods="seamless link primary"
href="[URL_WITH_CREDENTIALS]
import useAppForm, {
SilentFormError,
} from "@/components/shared/AppFormElements/useAppForm";
import AppForm from "@/components/shared/AppFormElements/AppForm.vue";
import AppFormField from "@/components/shared/AppFormElements/AppFormField.vue";
import useAsyncData from "@/composables/useAsyncData";
import EditTeamAddressFields from "./EditTeamAddressFields.vue";
import AppDrawerModal from "@/components/shared/modals/AppDrawerModal.vue";
import { useDrawerModal } from "@/composables/useDrawerModal";
import { promptModal } from "jenesius-vue-modal";
import ChangeOwnerConfirmModal from "@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue";
import EventBus from "@/utils/event-bus";
import { getFeaturesData } from "./features";
import FeaturesGroup from "./FeaturesGroup.vue";
import FeaturesList from "./FeaturesList.vue";
import { ErrorMessage, useField } from "vee-validate";
import AppButton from "@/components/shared/Buttons/AppButton.vue";
import { useBrandedI18n } from "@/composables/useBrandedI18n";
// Define props
const props = defineProps({
data: {
type: Object,
required: true,
},
teamId: String,
});
const { tb } = useBrandedI18n();
// Branded i18n computed ref
const jiminnyVoiceLabel = tb("kiosk.edit-team.jiminny-voice--whitelabel");
const flags = reactive({
teamCreated: computed(() => !!props.data.id),
ownerCreated: computed(() => !!props.data.owner_id),
billingDisabled: computed(
() =>
!!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),
),
});
// Setup form
const form = useAppForm({
onSubmit,
toastSuccess: flags.teamCreated
? "Account updated successfully!"
: "Account created successfully!",
});
// Setup form state with initial values
const {
formState,
hasChanges,
updateSnapshot,
exportFormState,
softphoneEnabled,
} = useEditTeamForm(props.data);
// Load required data
const formData = reactive({
calendarOptions: useAsyncData(getCalendars, { showError: true }),
crmOptions: useAsyncData(getCrmServices, { showError: true }),
features: useAsyncData(getFeaturesData, { showError: true }),
partners: useAsyncData(getPartners, { showError: true }),
admins: reactive(useAdminsList()),
});
const { close } = useDrawerModal({ onClose });
const { tierModel, featuresGroups } = useFeaturesManager();
const { requireSyncPeriod } = useRequireSyncPeriod();
const drawerAttrs = computed(() => ({
as: AppForm,
title: flags.teamCreated ? "Edit Organization" : "Setup Account",
headerButtons: [
{
type: "submit",
label: "Save",
variant: "primary",
"data-testid": "setup-trial-submit",
disabled: !unref(hasChanges),
},
],
contentAttrs: {
busy: Object.values(formData).some(({ loading }) => loading),
},
}));
function onClose() {
return modalDiscardGuard({
onSave: form.submitHandler,
hasChanges: unref(hasChanges),
});
}
async function onSubmit() {
const ownerChanged =
flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;
if (ownerChanged) {
const confirmed = await promptModal(ChangeOwnerConfirmModal);
if (!confirmed) throw new SilentFormError("Owner change not confirmed");
}
const data = exportFormState();
// create or update the team
!flags.teamCreated
? await axios.post("/api/v1/settings/organizations", data)
: await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);
EventBus.$emit("team.updated");
// update form snapshot
updateSnapshot();
close();
}
function useFeaturesManager() {
const tierField = useField("tier_id", "required", {
initialValue: unref(formState).tier_id,
});
const tierModel = computed({
get() {
return unref(formState).tier_id;
},
set(tierId) {
setTier(tierId);
tierField.value.value = tierId;
},
});
const featuresGroups = computed(() => {
const { groups } = formData.features.data || {};
if (!groups) return [];
return [groups.TIER, groups["ADD_ON"]].filter(Boolean).flat();
});
function setTier(tierId) {
const selectedFeatures = new Set(unref(formState).features);
const { features, tiers } = formData.features.data;
// clear all tier features
features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));
const tier = tiers.find((tier) => tier.id === tierId);
// select only selected tiers features
[...tier.inherits, tierId]
.map((tierId) => features.byTier[tierId] || [])
.flat()
.forEach((feature) => selectedFeatures.add(feature.id));
Object.assign(unref(formState), {
features: Array.from(selectedFeatures),
tier_id: tierId,
});
}
return { tierModel, setTier, featuresGroups };
}
function useRequireSyncPeriod() {
// Computed property to check if opportunity sync period is required
const requireSyncPeriod = computed(() => {
return !!formData.crmOptions.data?.find(
(item) => formState.value.crm === item.id,
)?.requireInitialSyncPeriod;
});
watch(requireSyncPeriod, (required) => {
formState.value.opportunity_sync_period = required
? formState.value.opportunity_sync_period ||
DEFAULT_OPPORTUNITY_SYNC_PERIOD
: null;
});
return { requireSyncPeriod };
}
function useAdminsList() {
return useAsyncData(async () => {
const data = await fetchUsersData(props.data.id);
return data.filter((user) => user.roles?.some((e) => e.name == "admin"));
});
}
</script>
<style lang="less" module>
.fieldLabel:has(~ * :disabled) {
opacity: 0.6;
}
.tearsGrid {
display: grid;
padding-top: 10px;
gap: 10px;
.sectionTitle {
margin-top: 30px;
display: flex;
justify-content: space-between;
}
}
.errorMessage {
color: var(--color-danger);
}
.docsRef {
font-size: 14px;
}
</style>...
|
51173
|
NULL
|
NULL
|
NULL
|
|
49813
|
NULL
|
0
|
2026-05-18T06:59:49.373159+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779087589373_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/jiminny/app/front-end/src/components faVsco.js – ~/jiminny/app/front-end/src/components/Settings/Kiosk/modals/EditTeamModal/EditTeamModal.vue...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
S Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
2
Previous Highlighted Error
Next Highlighted Error
<template>
<AppDrawerModal v-bind="drawerAttrs" #default="{ $style: drawerStyle }">
<div :class="drawerStyle.formGrid">
<div :class="drawerStyle.sectionTitle">General</div>
<!-- Name -->
<AppFormField
field-label="Company name"
v-model="formState.name"
:required="true"
name="name"
rules="required"
data-testid="setup-trial-name"
/>
<!-- Owner Email -->
<AppFormField
v-if="!flags.ownerCreated"
type="email"
field-label="Owner Email"
v-model="formState.owner_email"
:required="true"
name="owner_email"
rules="required|email"
data-testid="setup-trial-owner-email"
/>
<AppFormField
v-else
field-label="Owner"
name="owner_id"
:required="true"
rules="required"
v-model="formState.owner_id"
:options="formData.admins.data || []"
:loading="formData.admins.loading"
type="select"
option-label="name"
track-by="id"
data-testid="setup-trial-owner-email"
/>
<!-- CRM -->
<AppFormField
v-model="formState.crm"
name="crm"
type="select"
field-label="CRM"
:required="true"
rules="required"
:options="formData.crmOptions.data || []"
track-by="id"
option-label="label"
:loading="formData.crmOptions.loading"
data-testid="setup-trial-crm"
:disabled="flags.ownerCreated"
/>
<!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->
<AppFormField
v-if="flags.teamCreated && formData.partners.data?.length > 1"
v-model="formState.partner_id"
name="partner_id"
type="select"
field-label="Partner"
:options="formData.partners.data || []"
track-by="id"
option-label="name"
:loading="formData.partners.loading"
data-testid="setup-trial-partner"
/>
<!-- Opportunity Sync Period -->
<AppFormField
:disabled="!requireSyncPeriod"
v-model="formState.opportunity_sync_period"
name="opportunity_sync_period"
type="select"
field-label="Import Opportunities Sync Period"
:required="requireSyncPeriod"
:rules="requireSyncPeriod ? 'required' : ''"
:options="syncPeriodOptions"
track-by="id"
option-label="label"
data-testid="setup-trial-sync-period"
/>
<!-- Calendar -->
<AppFormField
v-model="formState.calendar"
name="calendar"
type="radios"
ui="radios"
field-label="Calendar"
:required="true"
rules="required"
:options="formData.calendarOptions.data || []"
data-testid="setup-trial-calendar"
:disabled="flags.ownerCreated"
/>
<!-- Softphone -->
<div>
<div :class="[$style.fieldLabel, drawerStyle.fieldLabel]">
Softphone
</div>
<AppFormField
v-model="formState.features"
name="softphone"
type="checkbox"
:value="SOFTPHONE_FEATURE_ID"
:field-label="jiminnyVoiceLabel"
data-testid="setup-trial-softphone"
/>
</div>
<EditTeamAddressFields
v-if="softphoneEnabled"
:disabled="flags.billingDisabled"
/>
</div>
<div :class="$style.tearsGrid">
<div :class="$style.sectionTitle">
<div :class="drawerStyle.sectionTitle">Tiers & Add-ons</div>
<AppButton
icon="question"
label="Tiers explained"
mods="seamless link primary"
href="[URL_WITH_CREDENTIALS]
import useAppForm, {
SilentFormError,
} from "@/components/shared/AppFormElements/useAppForm";
import AppForm from "@/components/shared/AppFormElements/AppForm.vue";
import AppFormField from "@/components/shared/AppFormElements/AppFormField.vue";
import useAsyncData from "@/composables/useAsyncData";
import EditTeamAddressFields from "./EditTeamAddressFields.vue";
import AppDrawerModal from "@/components/shared/modals/AppDrawerModal.vue";
import { useDrawerModal } from "@/composables/useDrawerModal";
import { promptModal } from "jenesius-vue-modal";
import ChangeOwnerConfirmModal from "@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue";
import EventBus from "@/utils/event-bus";
import { getFeaturesData } from "./features";
import FeaturesGroup from "./FeaturesGroup.vue";
import FeaturesList from "./FeaturesList.vue";
import { ErrorMessage, useField } from "vee-validate";
import AppButton from "@/components/shared/Buttons/AppButton.vue";
import { useBrandedI18n } from "@/composables/useBrandedI18n";
// Define props
const props = defineProps({
data: {
type: Object,
required: true,
},
teamId: String,
});
const { tb } = useBrandedI18n();
// Branded i18n computed ref
const jiminnyVoiceLabel = tb("kiosk.edit-team.jiminny-voice--whitelabel");
const flags = reactive({
teamCreated: computed(() => !!props.data.id),
ownerCreated: computed(() => !!props.data.owner_id),
billingDisabled: computed(
() =>
!!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),
),
});
// Setup form
const form = useAppForm({
onSubmit,
toastSuccess: flags.teamCreated
? "Account updated successfully!"
: "Account created successfully!",
});
// Setup form state with initial values
const {
formState,
hasChanges,
updateSnapshot,
exportFormState,
softphoneEnabled,
} = useEditTeamForm(props.data);
// Load required data
const formData = reactive({
calendarOptions: useAsyncData(getCalendars, { showError: true }),
crmOptions: useAsyncData(getCrmServices, { showError: true }),
features: useAsyncData(getFeaturesData, { showError: true }),
partners: useAsyncData(getPartners, { showError: true }),
admins: reactive(useAdminsList()),
});
const { close } = useDrawerModal({ onClose });
const { tierModel, featuresGroups } = useFeaturesManager();
const { requireSyncPeriod } = useRequireSyncPeriod();
const drawerAttrs = computed(() => ({
as: AppForm,
title: flags.teamCreated ? "Edit Organization" : "Setup Account",
headerButtons: [
{
type: "submit",
label: "Save",
variant: "primary",
"data-testid": "setup-trial-submit",
disabled: !unref(hasChanges),
},
],
contentAttrs: {
busy: Object.values(formData).some(({ loading }) => loading),
},
}));
function onClose() {
return modalDiscardGuard({
onSave: form.submitHandler,
hasChanges: unref(hasChanges),
});
}
async function onSubmit() {
const ownerChanged =
flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;
if (ownerChanged) {
const confirmed = await promptModal(ChangeOwnerConfirmModal);
if (!confirmed) throw new SilentFormError("Owner change not confirmed");
}
const data = exportFormState();
// create or update the team
!flags.teamCreated
? await axios.post("/api/v1/settings/organizations", data)
: await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);
EventBus.$emit("team.updated");
// update form snapshot
updateSnapshot();
close();
}
function useFeaturesManager() {
const tierField = useField("tier_id", "required", {
initialValue: unref(formState).tier_id,
});
const tierModel = computed({
get() {
return unref(formState).tier_id;
},
set(tierId) {
setTier(tierId);
tierField.value.value = tierId;
},
});
const featuresGroups = computed(() => {
const { groups } = formData.features.data || {};
if (!groups) return [];
return [groups.TIER, groups["ADD_ON"]].filter(Boolean).flat();
});
function setTier(tierId) {
const selectedFeatures = new Set(unref(formState).features);
const { features, tiers } = formData.features.data;
// clear all tier features
features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));
const tier = tiers.find((tier) => tier.id === tierId);
// select only selected tiers features
[...tier.inherits, tierId]
.map((tierId) => features.byTier[tierId] || [])
.flat()
.forEach((feature) => selectedFeatures.add(feature.id));
Object.assign(unref(formState), {
features: Array.from(selectedFeatures),
tier_id: tierId,
});
}
return { tierModel, setTier, featuresGroups };
}
function useRequireSyncPeriod() {
// Computed property to check if opportunity sync period is required
const requireSyncPeriod = computed(() => {
return !!formData.crmOptions.data?.find(
(item) => formState.value.crm === item.id,
)?.requireInitialSyncPeriod;
});
watch(requireSyncPeriod, (required) => {
formState.value.opportunity_sync_period = required
? formState.value.opportunity_sync_period ||
DEFAULT_OPPORTUNITY_SYNC_PERIOD
: null;
});
return { requireSyncPeriod };
}
function useAdminsList() {
return useAsyncData(async () => {
const data = await fetchUsersData(props.data.id);
return data.filter((user) => user.roles?.some((e) => e.name == "admin"));
});
}
</script>
<style lang="less" module>
.fieldLabel:has(~ * :disabled) {
opacity: 0.6;
}
.tearsGrid {
display: grid;
padding-top: 10px;
gap: 10px;
.sectionTitle {
margin-top: 30px;
display: flex;
justify-content: space-between;
}
}
.errorMessage {
color: var(--color-danger);
}
.docsRef {
font-size: 14px;
}
</style>
Code changed:
Hide
Sync Changes
Hide This Notification
1
51
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Console\Commands\Crm;
use Carbon\Carbon;
use Exception;
use Illuminate\Console\Command;
use Jiminny\Component\Encryption\EncryptedTokenManager;
use Jiminny\Models\SocialAccount;
use Jiminny\Models\Team;
use Jiminny\Models\User;
use Pipedrive\versions\v2\Api\ActivitiesApi;
use Pipedrive\versions\v2\Api\ActivityFieldsApi;
use Pipedrive\versions\v2\Api\DealFieldsApi;
use Pipedrive\versions\v2\Api\DealsApi;
use Pipedrive\versions\v2\Api\PersonFieldsApi;
use Pipedrive\versions\v2\Api\PersonsApi;
use Pipedrive\versions\v2\Configuration;
class TestPipedriveOfficialSdkCommand extends Command
{
protected $signature = 'jiminny:test-pipedrive-official-sdk {teamId}';
protected $description = 'Test official Pipedrive SDK (pipedrive/pipedrive) with existing OAuth tokens';
private array $results = [];
private EncryptedTokenManager $tokenManager;
public function __construct(EncryptedTokenManager $tokenManager)
{
parent::__construct();
$this->tokenManager = $tokenManager;
}
public function handle(): int
{
$teamId = (int) $this->argument('teamId');
$this->info("Starting Pipedrive Official SDK POC for Team ID: {$teamId}");
$this->newLine();
try {
$this->runTests($teamId);
} catch (Exception $e) {
$this->error("POC failed with error: {$e->getMessage()}");
$this->error($e->getTraceAsString());
return 1;
}
$this->displayResults();
return 0;
}
private function runTests(int $teamId): void
{
$team = Team::find($teamId);
if (! $team) {
throw new Exception("Team with ID {$teamId} not found");
}
$socialAccount = SocialAccount::where('provider', SocialAccount::PROVIDER_PIPEDRIVE)
->whereHas('sociable', function ($query) use ($team) {
$query->where('team_id', $team->id);
})
->orderByDesc('expires') // Get the most recently expiring token
->first();
if (! $socialAccount) {
throw new Exception("No Pipedrive social account found for team {$teamId}");
}
$this->info("Found Pipedrive account for team: {$team->name}");
$this->newLine();
// Test 1: OAuth Initialization
$this->testOAuthInitialization($socialAccount);
// Test 2: Basic CRUD Operations
$this->testBasicCrudOperations($socialAccount);
// Test 3: Field Metadata
$this->testFieldMetadata($socialAccount);
// Test 4: v2 API Support
$this->testV2ApiSupport($socialAccount);
// Test 5: Error Handling
$this->testErrorHandling($socialAccount);
}
private function testOAuthInitialization(SocialAccount $socialAccount): void
{
$this->info('Test 1: OAuth Initialization');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$client = new DealsApi(null, $config);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('OAuth Initialization', true, "Client initialized successfully in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('OAuth Initialization', false, $e->getMessage(), $elapsed);
}
$this->newLine();
}
private function testBasicCrudOperations(SocialAccount $socialAccount): void
{
$this->info('Test 2: Basic CRUD Operations');
try {
// Get the raw token from database
$rawDbToken = $socialAccount->getProviderUserToken();
$this->info("DB token (length: " . strlen($rawDbToken) . ")");
$this->info("DB token preview: " . substr($rawDbToken, 0, 20) . "...");
// Check token expiry
$expires = $socialAccount->expires;
$this->info("Token expires at: " . ($expires ? Carbon::createFromTimestamp($expires)->toDateTimeString() : 'null'));
$this->info("Token is expired: " . ($expires && $expires < time() ? 'YES' : 'NO'));
// Test with the DB token directly
$this->info("\n--- Testing with DB token ---");
$config = new Configuration();
$config->setAccessToken($rawDbToken);
// Test 2a: Get Deals Summary
$this->testGetDeals($config);
// Test 2b: Get Persons
$this->testGetPersons($config);
// Test 2c: Get Activities
$this->testGetActivities($config);
} catch (Exception $e) {
$this->recordResult('Basic CRUD Operations', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testCurrentSystemApproach(SocialAccount $socialAccount): void
{
$startTime = microtime(true);
try {
// Simulate how current system makes requests
$token = $socialAccount->getProviderUserToken();
$url = 'https://api.pipedrive.com/api/v2/deals';
$headers = [
'Authorization' => 'Bearer ' . $token,
'Accept' => 'application/json',
];
$client = new \GuzzleHttp\Client();
$response = $client->get($url, [
'headers' => $headers,
'timeout' => 30,
]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$statusCode = $response->getStatusCode();
$this->recordResult('Current System v2 API', $statusCode === 200, "Status: {$statusCode} in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Current System v2 API', false, $e->getMessage(), $elapsed);
}
}
private function testGetDeals(Configuration $config): void
{
$this->info('Test 2a: Get Deals');
$startTime = microtime(true);
try {
$apiInstance = new DealsApi(null, $config);
// v2 SDK might have different method names
// Try common v2 method names
try {
$result = $apiInstance->getDeals(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals', true, "Retrieved deals in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method
$result = $apiInstance->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals Summary', true, "Retrieved deals summary in {$elapsed}ms", $elapsed);
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals', false, $e->getMessage(), $elapsed);
}
}
private function testGetPersons(Configuration $config): void
{
$this->info('Test 2b: Get Persons');
$startTime = microtime(true);
try {
$apiInstance = new PersonsApi(null, $config);
// v2 SDK might have different method names
try {
$result = $apiInstance->getPersons(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', true, "Retrieved persons in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method names
try {
$result = $apiInstance->getAllPersons(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', true, "Retrieved persons in {$elapsed}ms", $elapsed);
} catch (Exception $e2) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', false, "Method not found: {$e->getMessage()}", $elapsed);
}
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', false, $e->getMessage(), $elapsed);
}
}
private function testGetActivities(Configuration $config): void
{
$this->info('Test 2c: Get Activities');
$startTime = microtime(true);
try {
$apiInstance = new ActivitiesApi(null, $config);
// v2 SDK might have different method names
try {
$result = $apiInstance->getActivities(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', true, "Retrieved activities in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method names
try {
$result = $apiInstance->getAllActivities(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', true, "Retrieved activities in {$elapsed}ms", $elapsed);
} catch (Exception $e2) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', false, "Method not found: {$e->getMessage()}", $elapsed);
}
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', false, $e->getMessage(), $elapsed);
}
}
private function testFieldMetadata(SocialAccount $socialAccount): void
{
$this->info('Test 3: Field Metadata');
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
// Test 3a: Get Deal Fields
$this->testGetDealFields($config);
// Test 3b: Get Person Fields
$this->testGetPersonFields($config);
// Test 3c: Get Activity Fields
$this->testGetActivityFields($config);
} catch (Exception $e) {
$this->recordResult('Field Metadata', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testGetDealFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new DealFieldsApi(null, $config);
$result = $apiInstance->getDealFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Deal Fields', true, "Retrieved {$count} deal fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deal Fields', false, $e->getMessage(), $elapsed);
}
}
private function testGetPersonFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new PersonFieldsApi(null, $config);
$result = $apiInstance->getPersonFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Person Fields', true, "Retrieved {$count} person fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Person Fields', false, $e->getMessage(), $elapsed);
}
}
private function testGetActivityFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new ActivityFieldsApi(null, $config);
$result = $apiInstance->getActivityFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Activity Fields', true, "Retrieved {$count} activity fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activity Fields', false, $e->getMessage(), $elapsed);
}
}
private function testV2ApiSupport(SocialAccount $socialAccount): void
{
$this->info('Test 4: v2 API Support (Cursor-based Pagination)');
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$startTime = microtime(true);
// Test v2 deals endpoint with cursor pagination
// Note: The official SDK may or may not have v2 API support
// This test will determine if v2 is available
try {
$apiInstance = new DealsApi(null, $config);
$updatedSince = Carbon::now()->subDays(30)->toRfc3339String();
$result = $apiInstance->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
// Check if response has cursor information (v2 indicator)
// The response object doesn't have getAdditionalData method
// Just test if the call works - v2 API support is limited in official SDK v1
$this->recordResult('v2 API Support', false, "v1 API works but v2 cursor pagination not available in official SDK v1. Retrieved summary in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('v2 API Support', false, $e->getMessage(), $elapsed);
}
} catch (Exception $e) {
$this->recordResult('v2 API Support', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testErrorHandling(SocialAccount $socialAccount): void
{
$this->info('Test 5: Error Handling');
try {
// Test 5a: Invalid Token
$this->testInvalidToken();
// Test 5b: Non-existent Resource
$this->testNonExistentResource($socialAccount);
} catch (Exception $e) {
$this->recordResult('Error Handling', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testInvalidToken(): void
{
$this->info('Test 5a: Invalid Token');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken('invalid_token');
$client = new DealsApi(null, $config);
$client->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Invalid Token Error', false, "Expected error but request succeeded in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Invalid Token Error', true, "Correctly threw exception: {$e->getMessage()} in {$elapsed}ms", $elapsed);
}
}
private function testNonExistentResource(SocialAccount $socialAccount): void
{
$this->info('Test 5b: Non-existent Resource');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$client = new DealsApi(null, $config);
// Try to get a deal with a very high ID that likely doesn't exist
// Official SDK has getDealsSummary which works without specific ID
// Instead, let's test with an invalid field ID
try {
$fieldClient = new DealFieldsApi(null, $config);
$fieldClient->getDealField(999999999); // Very high ID that likely doesn't exist
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', false, "Expected error but request succeeded in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', true, "Correctly threw exception: {$e->getMessage()} in {$elapsed}ms", $elapsed);
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', false, $e->getMessage(), $elapsed);
}
}
private function recordResult(string $testName, bool $success, string $message, float $elapsed): void
{
$this->results[] = [
'test' => $testName,
'success' => $success,
'message' => $message,
'elapsed' => $elapsed,
];
$status = $success ? '✅ PASS' : '❌ FAIL';
$this->line(" {$status} - {$testName}: {$message}");
}
private function displayResults(): void
{
$this->newLine();
$this->info('=== POC Test Results Summary ===');
$this->newLine();
$total = count($this->results);
$passed = count(array_filter($this->results, fn ($r) => $r['success']));
$failed = $total - $passed;
$this->line("Total Tests: {$total}");
$this->line("Passed: {$passed}");
$this->line("Failed: {$failed}");
$this->newLine();
$totalTime = array_sum(array_column($this->results, 'elapsed'));
$this->line("Total Execution Time: {$totalTime}ms");
$this->newLine();
if ($failed > 0) {
$this->warn('Failed Tests:');
foreach ($this->results as $result) {
if (! $result['success']) {
$this->line(" - {$result['test']}: {$result['message']}");
}
}
$this->newLine();
}
$this->info('=== Detailed Results ===');
foreach ($this->results as $result) {
$status = $result['success'] ? '✅' : '❌';
$this->line("{$status} {$result['test']} ({$result['elapsed']}ms): {$result['message']}");
}
$this->newLine();
$this->info('=== Recommendations ===');
if ($passed === $total) {
$this->info('✅ All tests passed! The official SDK is viable for migration.');
$this->info('Next steps: Proceed with full migration planning.');
} else {
$this->warn('⚠️ Some tests failed. Review the failures above before proceeding.');
$this->warn('Consider hybrid approach or investigate alternatives if critical operations fail.');
}
}
}
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"pipedrive-sdk-poc, menu","depth":5,"on_screen":true,"help_text":"Git Branch: pipedrive-sdk-poc","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<template>\n <AppDrawerModal v-bind=\"drawerAttrs\" #default=\"{ $style: drawerStyle }\">\n <div :class=\"drawerStyle.formGrid\">\n <div :class=\"drawerStyle.sectionTitle\">General</div>\n <!-- Name -->\n <AppFormField\n field-label=\"Company name\"\n v-model=\"formState.name\"\n :required=\"true\"\n name=\"name\"\n rules=\"required\"\n data-testid=\"setup-trial-name\"\n />\n\n <!-- Owner Email -->\n <AppFormField\n v-if=\"!flags.ownerCreated\"\n type=\"email\"\n field-label=\"Owner Email\"\n v-model=\"formState.owner_email\"\n :required=\"true\"\n name=\"owner_email\"\n rules=\"required|email\"\n data-testid=\"setup-trial-owner-email\"\n />\n <AppFormField\n v-else\n field-label=\"Owner\"\n name=\"owner_id\"\n :required=\"true\"\n rules=\"required\"\n v-model=\"formState.owner_id\"\n :options=\"formData.admins.data || []\"\n :loading=\"formData.admins.loading\"\n type=\"select\"\n option-label=\"name\"\n track-by=\"id\"\n data-testid=\"setup-trial-owner-email\"\n />\n\n <!-- CRM -->\n <AppFormField\n v-model=\"formState.crm\"\n name=\"crm\"\n type=\"select\"\n field-label=\"CRM\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.crmOptions.data || []\"\n track-by=\"id\"\n option-label=\"label\"\n :loading=\"formData.crmOptions.loading\"\n data-testid=\"setup-trial-crm\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->\n <AppFormField\n v-if=\"flags.teamCreated && formData.partners.data?.length > 1\"\n v-model=\"formState.partner_id\"\n name=\"partner_id\"\n type=\"select\"\n field-label=\"Partner\"\n :options=\"formData.partners.data || []\"\n track-by=\"id\"\n option-label=\"name\"\n :loading=\"formData.partners.loading\"\n data-testid=\"setup-trial-partner\"\n />\n\n <!-- Opportunity Sync Period -->\n <AppFormField\n :disabled=\"!requireSyncPeriod\"\n v-model=\"formState.opportunity_sync_period\"\n name=\"opportunity_sync_period\"\n type=\"select\"\n field-label=\"Import Opportunities Sync Period\"\n :required=\"requireSyncPeriod\"\n :rules=\"requireSyncPeriod ? 'required' : ''\"\n :options=\"syncPeriodOptions\"\n track-by=\"id\"\n option-label=\"label\"\n data-testid=\"setup-trial-sync-period\"\n />\n\n <!-- Calendar -->\n <AppFormField\n v-model=\"formState.calendar\"\n name=\"calendar\"\n type=\"radios\"\n ui=\"radios\"\n field-label=\"Calendar\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.calendarOptions.data || []\"\n data-testid=\"setup-trial-calendar\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Softphone -->\n <div>\n <div :class=\"[$style.fieldLabel, drawerStyle.fieldLabel]\">\n Softphone\n </div>\n <AppFormField\n v-model=\"formState.features\"\n name=\"softphone\"\n type=\"checkbox\"\n :value=\"SOFTPHONE_FEATURE_ID\"\n :field-label=\"jiminnyVoiceLabel\"\n data-testid=\"setup-trial-softphone\"\n />\n </div>\n\n <EditTeamAddressFields\n v-if=\"softphoneEnabled\"\n :disabled=\"flags.billingDisabled\"\n />\n\n </div>\n <div :class=\"$style.tearsGrid\">\n <div :class=\"$style.sectionTitle\">\n <div :class=\"drawerStyle.sectionTitle\">Tiers & Add-ons</div>\n <AppButton\n icon=\"question\"\n label=\"Tiers explained\"\n mods=\"seamless link primary\"\n href=\"https://jiminny.atlassian.net/wiki/external/OGRhNWI0NzJjZTc0NDg1YTg5MTU4NGYwZWU3NTc2OGM\"\n :class=\"$style.docsRef\"\n />\n </div>\n <ErrorMessage name=\"tier_id\">\n <div :class=\"$style.errorMessage\">Selecting tier is required</div>\n </ErrorMessage>\n <FeaturesGroup\n v-for=\"group in featuresGroups\"\n :key=\"group.tier?.id || group.type\"\n v-bind=\"{ group, tiers: formData.features.data.tiers }\"\n v-model:tier=\"tierModel\"\n v-model:features=\"formState.features\"\n />\n <template\n v-if=\"\n flags.teamCreated &&\n formData.features.data?.features.byType.DEV?.length\n \"\n >\n <div :class=\"[$style.sectionTitle, drawerStyle.sectionTitle]\">\n Technical Settings\n </div>\n <FeaturesList\n v-model=\"formState.features\"\n :features=\"formData.features.data.features.byType.DEV\"\n />\n </template>\n </div>\n </AppDrawerModal>\n</template>\n<script>\nconst SOFTPHONE_FEATURE_ID = \"DIALER\";\n\n// Options for opportunity sync period\nconst syncPeriodOptions = [\n { id: \"3m\", label: \"3 Months\" },\n { id: \"6m\", label: \"6 Months\" },\n { id: \"12m\", label: \"12 Months\" },\n];\n\nconst DEFAULT_OPPORTUNITY_SYNC_PERIOD = syncPeriodOptions[0].id;\n\nexport const useEditTeamForm = toSelfProvidingHook((data) => {\n const formState = ref({\n features: [],\n ...data,\n });\n\n const formStateSnapshot = ref();\n\n updateSnapshot();\n\n const hasChanges = computed(\n () => !isEqual(formState.value, formStateSnapshot.value),\n );\n\n const softphoneEnabled = computed(() =>\n unref(formState).features?.includes(SOFTPHONE_FEATURE_ID),\n );\n\n function exportFormState() {\n const excluded = [\"softphone\"];\n\n if (!unref(softphoneEnabled)) {\n excluded.push(\"address\", \"city\", \"state\", \"zip\", \"country\");\n }\n\n return omit(formState.value, excluded);\n }\n\n function updateSnapshot() {\n formStateSnapshot.value = cloneDeep(formState.value);\n }\n\n return {\n formState,\n updateSnapshot,\n hasChanges,\n exportFormState,\n softphoneEnabled,\n };\n});\n\n// Data loading functions\nasync function getCalendars() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/calendars\"));\n\n if (!error) return data.data.map(({ id, label }) => ({ value: id, label }));\n\n console.error(error);\n throw new Error(\"Error loading calendars\");\n}\n\nasync function getCrmServices() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/crm-services\"));\n if (!error) return Object.values(data.data);\n\n console.error(error);\n throw new Error(\"Error loading CRM services\");\n}\n\nasync function getPartners() {\n const { error, data } = await tryCatch(\n axios.get(\"/api/v1/kiosk/partners\"),\n );\n if (!error) return data.data.data;\n\n console.error(error);\n throw new Error(\"Error loading partners\");\n}\n\nasync function fetchUsersData(teamId) {\n const { data, status } = await axios.get(\n `/api/v1/kiosk/organizations/${teamId}/users`,\n );\n\n if (status === 200) {\n return data;\n } else {\n throw new Error(\"Error in fetching users data\");\n }\n}\n</script>\n<script setup>\nimport { computed, ref, reactive, watch, unref } from \"vue\";\nimport axios from \"axios\";\nimport { cloneDeep, isEqual, omit } from \"lodash-es\";\nimport { modalDiscardGuard, toSelfProvidingHook, tryCatch } from \"@/utils\";\nimport useAppForm, {\n SilentFormError,\n} from \"@/components/shared/AppFormElements/useAppForm\";\nimport AppForm from \"@/components/shared/AppFormElements/AppForm.vue\";\nimport AppFormField from \"@/components/shared/AppFormElements/AppFormField.vue\";\nimport useAsyncData from \"@/composables/useAsyncData\";\nimport EditTeamAddressFields from \"./EditTeamAddressFields.vue\";\nimport AppDrawerModal from \"@/components/shared/modals/AppDrawerModal.vue\";\nimport { useDrawerModal } from \"@/composables/useDrawerModal\";\nimport { promptModal } from \"jenesius-vue-modal\";\nimport ChangeOwnerConfirmModal from \"@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue\";\nimport EventBus from \"@/utils/event-bus\";\nimport { getFeaturesData } from \"./features\";\nimport FeaturesGroup from \"./FeaturesGroup.vue\";\nimport FeaturesList from \"./FeaturesList.vue\";\nimport { ErrorMessage, useField } from \"vee-validate\";\nimport AppButton from \"@/components/shared/Buttons/AppButton.vue\";\nimport { useBrandedI18n } from \"@/composables/useBrandedI18n\";\n\n// Define props\nconst props = defineProps({\n data: {\n type: Object,\n required: true,\n },\n teamId: String,\n});\n\nconst { tb } = useBrandedI18n();\n\n// Branded i18n computed ref\nconst jiminnyVoiceLabel = tb(\"kiosk.edit-team.jiminny-voice--whitelabel\");\n\nconst flags = reactive({\n teamCreated: computed(() => !!props.data.id),\n ownerCreated: computed(() => !!props.data.owner_id),\n billingDisabled: computed(\n () =>\n !!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),\n ),\n});\n\n// Setup form\nconst form = useAppForm({\n onSubmit,\n toastSuccess: flags.teamCreated\n ? \"Account updated successfully!\"\n : \"Account created successfully!\",\n});\n\n// Setup form state with initial values\nconst {\n formState,\n hasChanges,\n updateSnapshot,\n exportFormState,\n softphoneEnabled,\n} = useEditTeamForm(props.data);\n\n// Load required data\nconst formData = reactive({\n calendarOptions: useAsyncData(getCalendars, { showError: true }),\n crmOptions: useAsyncData(getCrmServices, { showError: true }),\n features: useAsyncData(getFeaturesData, { showError: true }),\n partners: useAsyncData(getPartners, { showError: true }),\n admins: reactive(useAdminsList()),\n});\n\nconst { close } = useDrawerModal({ onClose });\n\nconst { tierModel, featuresGroups } = useFeaturesManager();\n\nconst { requireSyncPeriod } = useRequireSyncPeriod();\n\nconst drawerAttrs = computed(() => ({\n as: AppForm,\n title: flags.teamCreated ? \"Edit Organization\" : \"Setup Account\",\n headerButtons: [\n {\n type: \"submit\",\n label: \"Save\",\n variant: \"primary\",\n \"data-testid\": \"setup-trial-submit\",\n disabled: !unref(hasChanges),\n },\n ],\n contentAttrs: {\n busy: Object.values(formData).some(({ loading }) => loading),\n },\n}));\n\nfunction onClose() {\n return modalDiscardGuard({\n onSave: form.submitHandler,\n hasChanges: unref(hasChanges),\n });\n}\n\nasync function onSubmit() {\n const ownerChanged =\n flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;\n\n if (ownerChanged) {\n const confirmed = await promptModal(ChangeOwnerConfirmModal);\n if (!confirmed) throw new SilentFormError(\"Owner change not confirmed\");\n }\n\n const data = exportFormState();\n\n // create or update the team\n !flags.teamCreated\n ? await axios.post(\"/api/v1/settings/organizations\", data)\n : await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);\n\n EventBus.$emit(\"team.updated\");\n\n // update form snapshot\n updateSnapshot();\n close();\n}\n\nfunction useFeaturesManager() {\n const tierField = useField(\"tier_id\", \"required\", {\n initialValue: unref(formState).tier_id,\n });\n\n const tierModel = computed({\n get() {\n return unref(formState).tier_id;\n },\n set(tierId) {\n setTier(tierId);\n tierField.value.value = tierId;\n },\n });\n\n const featuresGroups = computed(() => {\n const { groups } = formData.features.data || {};\n\n if (!groups) return [];\n\n return [groups.TIER, groups[\"ADD_ON\"]].filter(Boolean).flat();\n });\n\n function setTier(tierId) {\n const selectedFeatures = new Set(unref(formState).features);\n const { features, tiers } = formData.features.data;\n\n // clear all tier features\n features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));\n\n const tier = tiers.find((tier) => tier.id === tierId);\n\n // select only selected tiers features\n [...tier.inherits, tierId]\n .map((tierId) => features.byTier[tierId] || [])\n .flat()\n .forEach((feature) => selectedFeatures.add(feature.id));\n\n Object.assign(unref(formState), {\n features: Array.from(selectedFeatures),\n tier_id: tierId,\n });\n }\n\n return { tierModel, setTier, featuresGroups };\n}\n\nfunction useRequireSyncPeriod() {\n // Computed property to check if opportunity sync period is required\n const requireSyncPeriod = computed(() => {\n return !!formData.crmOptions.data?.find(\n (item) => formState.value.crm === item.id,\n )?.requireInitialSyncPeriod;\n });\n\n watch(requireSyncPeriod, (required) => {\n formState.value.opportunity_sync_period = required\n ? formState.value.opportunity_sync_period ||\n DEFAULT_OPPORTUNITY_SYNC_PERIOD\n : null;\n });\n\n return { requireSyncPeriod };\n}\n\nfunction useAdminsList() {\n return useAsyncData(async () => {\n const data = await fetchUsersData(props.data.id);\n\n return data.filter((user) => user.roles?.some((e) => e.name == \"admin\"));\n });\n}\n</script>\n\n<style lang=\"less\" module>\n.fieldLabel:has(~ * :disabled) {\n opacity: 0.6;\n}\n.tearsGrid {\n display: grid;\n padding-top: 10px;\n gap: 10px;\n .sectionTitle {\n margin-top: 30px;\n display: flex;\n justify-content: space-between;\n }\n}\n.errorMessage {\n color: var(--color-danger);\n}\n.docsRef {\n font-size: 14px;\n}\n</style>","depth":4,"on_screen":true,"value":"<template>\n <AppDrawerModal v-bind=\"drawerAttrs\" #default=\"{ $style: drawerStyle }\">\n <div :class=\"drawerStyle.formGrid\">\n <div :class=\"drawerStyle.sectionTitle\">General</div>\n <!-- Name -->\n <AppFormField\n field-label=\"Company name\"\n v-model=\"formState.name\"\n :required=\"true\"\n name=\"name\"\n rules=\"required\"\n data-testid=\"setup-trial-name\"\n />\n\n <!-- Owner Email -->\n <AppFormField\n v-if=\"!flags.ownerCreated\"\n type=\"email\"\n field-label=\"Owner Email\"\n v-model=\"formState.owner_email\"\n :required=\"true\"\n name=\"owner_email\"\n rules=\"required|email\"\n data-testid=\"setup-trial-owner-email\"\n />\n <AppFormField\n v-else\n field-label=\"Owner\"\n name=\"owner_id\"\n :required=\"true\"\n rules=\"required\"\n v-model=\"formState.owner_id\"\n :options=\"formData.admins.data || []\"\n :loading=\"formData.admins.loading\"\n type=\"select\"\n option-label=\"name\"\n track-by=\"id\"\n data-testid=\"setup-trial-owner-email\"\n />\n\n <!-- CRM -->\n <AppFormField\n v-model=\"formState.crm\"\n name=\"crm\"\n type=\"select\"\n field-label=\"CRM\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.crmOptions.data || []\"\n track-by=\"id\"\n option-label=\"label\"\n :loading=\"formData.crmOptions.loading\"\n data-testid=\"setup-trial-crm\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->\n <AppFormField\n v-if=\"flags.teamCreated && formData.partners.data?.length > 1\"\n v-model=\"formState.partner_id\"\n name=\"partner_id\"\n type=\"select\"\n field-label=\"Partner\"\n :options=\"formData.partners.data || []\"\n track-by=\"id\"\n option-label=\"name\"\n :loading=\"formData.partners.loading\"\n data-testid=\"setup-trial-partner\"\n />\n\n <!-- Opportunity Sync Period -->\n <AppFormField\n :disabled=\"!requireSyncPeriod\"\n v-model=\"formState.opportunity_sync_period\"\n name=\"opportunity_sync_period\"\n type=\"select\"\n field-label=\"Import Opportunities Sync Period\"\n :required=\"requireSyncPeriod\"\n :rules=\"requireSyncPeriod ? 'required' : ''\"\n :options=\"syncPeriodOptions\"\n track-by=\"id\"\n option-label=\"label\"\n data-testid=\"setup-trial-sync-period\"\n />\n\n <!-- Calendar -->\n <AppFormField\n v-model=\"formState.calendar\"\n name=\"calendar\"\n type=\"radios\"\n ui=\"radios\"\n field-label=\"Calendar\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.calendarOptions.data || []\"\n data-testid=\"setup-trial-calendar\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Softphone -->\n <div>\n <div :class=\"[$style.fieldLabel, drawerStyle.fieldLabel]\">\n Softphone\n </div>\n <AppFormField\n v-model=\"formState.features\"\n name=\"softphone\"\n type=\"checkbox\"\n :value=\"SOFTPHONE_FEATURE_ID\"\n :field-label=\"jiminnyVoiceLabel\"\n data-testid=\"setup-trial-softphone\"\n />\n </div>\n\n <EditTeamAddressFields\n v-if=\"softphoneEnabled\"\n :disabled=\"flags.billingDisabled\"\n />\n\n </div>\n <div :class=\"$style.tearsGrid\">\n <div :class=\"$style.sectionTitle\">\n <div :class=\"drawerStyle.sectionTitle\">Tiers & Add-ons</div>\n <AppButton\n icon=\"question\"\n label=\"Tiers explained\"\n mods=\"seamless link primary\"\n href=\"https://jiminny.atlassian.net/wiki/external/OGRhNWI0NzJjZTc0NDg1YTg5MTU4NGYwZWU3NTc2OGM\"\n :class=\"$style.docsRef\"\n />\n </div>\n <ErrorMessage name=\"tier_id\">\n <div :class=\"$style.errorMessage\">Selecting tier is required</div>\n </ErrorMessage>\n <FeaturesGroup\n v-for=\"group in featuresGroups\"\n :key=\"group.tier?.id || group.type\"\n v-bind=\"{ group, tiers: formData.features.data.tiers }\"\n v-model:tier=\"tierModel\"\n v-model:features=\"formState.features\"\n />\n <template\n v-if=\"\n flags.teamCreated &&\n formData.features.data?.features.byType.DEV?.length\n \"\n >\n <div :class=\"[$style.sectionTitle, drawerStyle.sectionTitle]\">\n Technical Settings\n </div>\n <FeaturesList\n v-model=\"formState.features\"\n :features=\"formData.features.data.features.byType.DEV\"\n />\n </template>\n </div>\n </AppDrawerModal>\n</template>\n<script>\nconst SOFTPHONE_FEATURE_ID = \"DIALER\";\n\n// Options for opportunity sync period\nconst syncPeriodOptions = [\n { id: \"3m\", label: \"3 Months\" },\n { id: \"6m\", label: \"6 Months\" },\n { id: \"12m\", label: \"12 Months\" },\n];\n\nconst DEFAULT_OPPORTUNITY_SYNC_PERIOD = syncPeriodOptions[0].id;\n\nexport const useEditTeamForm = toSelfProvidingHook((data) => {\n const formState = ref({\n features: [],\n ...data,\n });\n\n const formStateSnapshot = ref();\n\n updateSnapshot();\n\n const hasChanges = computed(\n () => !isEqual(formState.value, formStateSnapshot.value),\n );\n\n const softphoneEnabled = computed(() =>\n unref(formState).features?.includes(SOFTPHONE_FEATURE_ID),\n );\n\n function exportFormState() {\n const excluded = [\"softphone\"];\n\n if (!unref(softphoneEnabled)) {\n excluded.push(\"address\", \"city\", \"state\", \"zip\", \"country\");\n }\n\n return omit(formState.value, excluded);\n }\n\n function updateSnapshot() {\n formStateSnapshot.value = cloneDeep(formState.value);\n }\n\n return {\n formState,\n updateSnapshot,\n hasChanges,\n exportFormState,\n softphoneEnabled,\n };\n});\n\n// Data loading functions\nasync function getCalendars() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/calendars\"));\n\n if (!error) return data.data.map(({ id, label }) => ({ value: id, label }));\n\n console.error(error);\n throw new Error(\"Error loading calendars\");\n}\n\nasync function getCrmServices() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/crm-services\"));\n if (!error) return Object.values(data.data);\n\n console.error(error);\n throw new Error(\"Error loading CRM services\");\n}\n\nasync function getPartners() {\n const { error, data } = await tryCatch(\n axios.get(\"/api/v1/kiosk/partners\"),\n );\n if (!error) return data.data.data;\n\n console.error(error);\n throw new Error(\"Error loading partners\");\n}\n\nasync function fetchUsersData(teamId) {\n const { data, status } = await axios.get(\n `/api/v1/kiosk/organizations/${teamId}/users`,\n );\n\n if (status === 200) {\n return data;\n } else {\n throw new Error(\"Error in fetching users data\");\n }\n}\n</script>\n<script setup>\nimport { computed, ref, reactive, watch, unref } from \"vue\";\nimport axios from \"axios\";\nimport { cloneDeep, isEqual, omit } from \"lodash-es\";\nimport { modalDiscardGuard, toSelfProvidingHook, tryCatch } from \"@/utils\";\nimport useAppForm, {\n SilentFormError,\n} from \"@/components/shared/AppFormElements/useAppForm\";\nimport AppForm from \"@/components/shared/AppFormElements/AppForm.vue\";\nimport AppFormField from \"@/components/shared/AppFormElements/AppFormField.vue\";\nimport useAsyncData from \"@/composables/useAsyncData\";\nimport EditTeamAddressFields from \"./EditTeamAddressFields.vue\";\nimport AppDrawerModal from \"@/components/shared/modals/AppDrawerModal.vue\";\nimport { useDrawerModal } from \"@/composables/useDrawerModal\";\nimport { promptModal } from \"jenesius-vue-modal\";\nimport ChangeOwnerConfirmModal from \"@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue\";\nimport EventBus from \"@/utils/event-bus\";\nimport { getFeaturesData } from \"./features\";\nimport FeaturesGroup from \"./FeaturesGroup.vue\";\nimport FeaturesList from \"./FeaturesList.vue\";\nimport { ErrorMessage, useField } from \"vee-validate\";\nimport AppButton from \"@/components/shared/Buttons/AppButton.vue\";\nimport { useBrandedI18n } from \"@/composables/useBrandedI18n\";\n\n// Define props\nconst props = defineProps({\n data: {\n type: Object,\n required: true,\n },\n teamId: String,\n});\n\nconst { tb } = useBrandedI18n();\n\n// Branded i18n computed ref\nconst jiminnyVoiceLabel = tb(\"kiosk.edit-team.jiminny-voice--whitelabel\");\n\nconst flags = reactive({\n teamCreated: computed(() => !!props.data.id),\n ownerCreated: computed(() => !!props.data.owner_id),\n billingDisabled: computed(\n () =>\n !!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),\n ),\n});\n\n// Setup form\nconst form = useAppForm({\n onSubmit,\n toastSuccess: flags.teamCreated\n ? \"Account updated successfully!\"\n : \"Account created successfully!\",\n});\n\n// Setup form state with initial values\nconst {\n formState,\n hasChanges,\n updateSnapshot,\n exportFormState,\n softphoneEnabled,\n} = useEditTeamForm(props.data);\n\n// Load required data\nconst formData = reactive({\n calendarOptions: useAsyncData(getCalendars, { showError: true }),\n crmOptions: useAsyncData(getCrmServices, { showError: true }),\n features: useAsyncData(getFeaturesData, { showError: true }),\n partners: useAsyncData(getPartners, { showError: true }),\n admins: reactive(useAdminsList()),\n});\n\nconst { close } = useDrawerModal({ onClose });\n\nconst { tierModel, featuresGroups } = useFeaturesManager();\n\nconst { requireSyncPeriod } = useRequireSyncPeriod();\n\nconst drawerAttrs = computed(() => ({\n as: AppForm,\n title: flags.teamCreated ? \"Edit Organization\" : \"Setup Account\",\n headerButtons: [\n {\n type: \"submit\",\n label: \"Save\",\n variant: \"primary\",\n \"data-testid\": \"setup-trial-submit\",\n disabled: !unref(hasChanges),\n },\n ],\n contentAttrs: {\n busy: Object.values(formData).some(({ loading }) => loading),\n },\n}));\n\nfunction onClose() {\n return modalDiscardGuard({\n onSave: form.submitHandler,\n hasChanges: unref(hasChanges),\n });\n}\n\nasync function onSubmit() {\n const ownerChanged =\n flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;\n\n if (ownerChanged) {\n const confirmed = await promptModal(ChangeOwnerConfirmModal);\n if (!confirmed) throw new SilentFormError(\"Owner change not confirmed\");\n }\n\n const data = exportFormState();\n\n // create or update the team\n !flags.teamCreated\n ? await axios.post(\"/api/v1/settings/organizations\", data)\n : await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);\n\n EventBus.$emit(\"team.updated\");\n\n // update form snapshot\n updateSnapshot();\n close();\n}\n\nfunction useFeaturesManager() {\n const tierField = useField(\"tier_id\", \"required\", {\n initialValue: unref(formState).tier_id,\n });\n\n const tierModel = computed({\n get() {\n return unref(formState).tier_id;\n },\n set(tierId) {\n setTier(tierId);\n tierField.value.value = tierId;\n },\n });\n\n const featuresGroups = computed(() => {\n const { groups } = formData.features.data || {};\n\n if (!groups) return [];\n\n return [groups.TIER, groups[\"ADD_ON\"]].filter(Boolean).flat();\n });\n\n function setTier(tierId) {\n const selectedFeatures = new Set(unref(formState).features);\n const { features, tiers } = formData.features.data;\n\n // clear all tier features\n features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));\n\n const tier = tiers.find((tier) => tier.id === tierId);\n\n // select only selected tiers features\n [...tier.inherits, tierId]\n .map((tierId) => features.byTier[tierId] || [])\n .flat()\n .forEach((feature) => selectedFeatures.add(feature.id));\n\n Object.assign(unref(formState), {\n features: Array.from(selectedFeatures),\n tier_id: tierId,\n });\n }\n\n return { tierModel, setTier, featuresGroups };\n}\n\nfunction useRequireSyncPeriod() {\n // Computed property to check if opportunity sync period is required\n const requireSyncPeriod = computed(() => {\n return !!formData.crmOptions.data?.find(\n (item) => formState.value.crm === item.id,\n )?.requireInitialSyncPeriod;\n });\n\n watch(requireSyncPeriod, (required) => {\n formState.value.opportunity_sync_period = required\n ? formState.value.opportunity_sync_period ||\n DEFAULT_OPPORTUNITY_SYNC_PERIOD\n : null;\n });\n\n return { requireSyncPeriod };\n}\n\nfunction useAdminsList() {\n return useAsyncData(async () => {\n const data = await fetchUsersData(props.data.id);\n\n return data.filter((user) => user.roles?.some((e) => e.name == \"admin\"));\n });\n}\n</script>\n\n<style lang=\"less\" module>\n.fieldLabel:has(~ * :disabled) {\n opacity: 0.6;\n}\n.tearsGrid {\n display: grid;\n padding-top: 10px;\n gap: 10px;\n .sectionTitle {\n margin-top: 30px;\n display: flex;\n justify-content: space-between;\n }\n}\n.errorMessage {\n color: var(--color-danger);\n}\n.docsRef {\n font-size: 14px;\n}\n</style>","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.02111111},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"51","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02013889,"height":0.02111111},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.02111111},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.025555555},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.014583333,"height":0.025555555},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Console\\Commands\\Crm;\n\nuse Carbon\\Carbon;\nuse Exception;\nuse Illuminate\\Console\\Command;\nuse Jiminny\\Component\\Encryption\\EncryptedTokenManager;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Models\\User;\nuse Pipedrive\\versions\\v2\\Api\\ActivitiesApi;\nuse Pipedrive\\versions\\v2\\Api\\ActivityFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\DealFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\DealsApi;\nuse Pipedrive\\versions\\v2\\Api\\PersonFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\PersonsApi;\nuse Pipedrive\\versions\\v2\\Configuration;\n\nclass TestPipedriveOfficialSdkCommand extends Command\n{\n protected $signature = 'jiminny:test-pipedrive-official-sdk {teamId}';\n\n protected $description = 'Test official Pipedrive SDK (pipedrive/pipedrive) with existing OAuth tokens';\n\n private array $results = [];\n\n private EncryptedTokenManager $tokenManager;\n\n public function __construct(EncryptedTokenManager $tokenManager)\n {\n parent::__construct();\n $this->tokenManager = $tokenManager;\n }\n\n public function handle(): int\n {\n $teamId = (int) $this->argument('teamId');\n\n $this->info(\"Starting Pipedrive Official SDK POC for Team ID: {$teamId}\");\n $this->newLine();\n\n try {\n $this->runTests($teamId);\n } catch (Exception $e) {\n $this->error(\"POC failed with error: {$e->getMessage()}\");\n $this->error($e->getTraceAsString());\n\n return 1;\n }\n\n $this->displayResults();\n\n return 0;\n }\n\n private function runTests(int $teamId): void\n {\n $team = Team::find($teamId);\n if (! $team) {\n throw new Exception(\"Team with ID {$teamId} not found\");\n }\n\n $socialAccount = SocialAccount::where('provider', SocialAccount::PROVIDER_PIPEDRIVE)\n ->whereHas('sociable', function ($query) use ($team) {\n $query->where('team_id', $team->id);\n })\n ->orderByDesc('expires') // Get the most recently expiring token\n ->first();\n\n if (! $socialAccount) {\n throw new Exception(\"No Pipedrive social account found for team {$teamId}\");\n }\n\n $this->info(\"Found Pipedrive account for team: {$team->name}\");\n $this->newLine();\n\n // Test 1: OAuth Initialization\n $this->testOAuthInitialization($socialAccount);\n\n // Test 2: Basic CRUD Operations\n $this->testBasicCrudOperations($socialAccount);\n\n // Test 3: Field Metadata\n $this->testFieldMetadata($socialAccount);\n\n // Test 4: v2 API Support\n $this->testV2ApiSupport($socialAccount);\n\n // Test 5: Error Handling\n $this->testErrorHandling($socialAccount);\n }\n\n private function testOAuthInitialization(SocialAccount $socialAccount): void\n {\n $this->info('Test 1: OAuth Initialization');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n $client = new DealsApi(null, $config);\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('OAuth Initialization', true, \"Client initialized successfully in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('OAuth Initialization', false, $e->getMessage(), $elapsed);\n }\n\n $this->newLine();\n }\n\n private function testBasicCrudOperations(SocialAccount $socialAccount): void\n {\n $this->info('Test 2: Basic CRUD Operations');\n\n try {\n // Get the raw token from database\n $rawDbToken = $socialAccount->getProviderUserToken();\n $this->info(\"DB token (length: \" . strlen($rawDbToken) . \")\");\n $this->info(\"DB token preview: \" . substr($rawDbToken, 0, 20) . \"...\");\n\n // Check token expiry\n $expires = $socialAccount->expires;\n $this->info(\"Token expires at: \" . ($expires ? Carbon::createFromTimestamp($expires)->toDateTimeString() : 'null'));\n $this->info(\"Token is expired: \" . ($expires && $expires < time() ? 'YES' : 'NO'));\n\n // Test with the DB token directly\n $this->info(\"\\n--- Testing with DB token ---\");\n $config = new Configuration();\n $config->setAccessToken($rawDbToken);\n\n // Test 2a: Get Deals Summary\n $this->testGetDeals($config);\n\n // Test 2b: Get Persons\n $this->testGetPersons($config);\n\n // Test 2c: Get Activities\n $this->testGetActivities($config);\n } catch (Exception $e) {\n $this->recordResult('Basic CRUD Operations', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testCurrentSystemApproach(SocialAccount $socialAccount): void\n {\n $startTime = microtime(true);\n\n try {\n // Simulate how current system makes requests\n $token = $socialAccount->getProviderUserToken();\n $url = 'https://api.pipedrive.com/api/v2/deals';\n\n $headers = [\n 'Authorization' => 'Bearer ' . $token,\n 'Accept' => 'application/json',\n ];\n\n $client = new \\GuzzleHttp\\Client();\n $response = $client->get($url, [\n 'headers' => $headers,\n 'timeout' => 30,\n ]);\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $statusCode = $response->getStatusCode();\n $this->recordResult('Current System v2 API', $statusCode === 200, \"Status: {$statusCode} in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Current System v2 API', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetDeals(Configuration $config): void\n {\n $this->info('Test 2a: Get Deals');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new DealsApi(null, $config);\n // v2 SDK might have different method names\n // Try common v2 method names\n try {\n $result = $apiInstance->getDeals(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals', true, \"Retrieved deals in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method\n $result = $apiInstance->getDealsSummary();\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals Summary', true, \"Retrieved deals summary in {$elapsed}ms\", $elapsed);\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetPersons(Configuration $config): void\n {\n $this->info('Test 2b: Get Persons');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new PersonsApi(null, $config);\n // v2 SDK might have different method names\n try {\n $result = $apiInstance->getPersons(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', true, \"Retrieved persons in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method names\n try {\n $result = $apiInstance->getAllPersons(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', true, \"Retrieved persons in {$elapsed}ms\", $elapsed);\n } catch (Exception $e2) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', false, \"Method not found: {$e->getMessage()}\", $elapsed);\n }\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetActivities(Configuration $config): void\n {\n $this->info('Test 2c: Get Activities');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new ActivitiesApi(null, $config);\n // v2 SDK might have different method names\n try {\n $result = $apiInstance->getActivities(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', true, \"Retrieved activities in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method names\n try {\n $result = $apiInstance->getAllActivities(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', true, \"Retrieved activities in {$elapsed}ms\", $elapsed);\n } catch (Exception $e2) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', false, \"Method not found: {$e->getMessage()}\", $elapsed);\n }\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testFieldMetadata(SocialAccount $socialAccount): void\n {\n $this->info('Test 3: Field Metadata');\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n // Test 3a: Get Deal Fields\n $this->testGetDealFields($config);\n\n // Test 3b: Get Person Fields\n $this->testGetPersonFields($config);\n\n // Test 3c: Get Activity Fields\n $this->testGetActivityFields($config);\n } catch (Exception $e) {\n $this->recordResult('Field Metadata', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testGetDealFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new DealFieldsApi(null, $config);\n $result = $apiInstance->getDealFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Deal Fields', true, \"Retrieved {$count} deal fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deal Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetPersonFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new PersonFieldsApi(null, $config);\n $result = $apiInstance->getPersonFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Person Fields', true, \"Retrieved {$count} person fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Person Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetActivityFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new ActivityFieldsApi(null, $config);\n $result = $apiInstance->getActivityFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Activity Fields', true, \"Retrieved {$count} activity fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activity Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testV2ApiSupport(SocialAccount $socialAccount): void\n {\n $this->info('Test 4: v2 API Support (Cursor-based Pagination)');\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n $startTime = microtime(true);\n\n // Test v2 deals endpoint with cursor pagination\n // Note: The official SDK may or may not have v2 API support\n // This test will determine if v2 is available\n try {\n $apiInstance = new DealsApi(null, $config);\n $updatedSince = Carbon::now()->subDays(30)->toRfc3339String();\n $result = $apiInstance->getDealsSummary();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n\n // Check if response has cursor information (v2 indicator)\n // The response object doesn't have getAdditionalData method\n // Just test if the call works - v2 API support is limited in official SDK v1\n $this->recordResult('v2 API Support', false, \"v1 API works but v2 cursor pagination not available in official SDK v1. Retrieved summary in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('v2 API Support', false, $e->getMessage(), $elapsed);\n }\n } catch (Exception $e) {\n $this->recordResult('v2 API Support', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testErrorHandling(SocialAccount $socialAccount): void\n {\n $this->info('Test 5: Error Handling');\n\n try {\n // Test 5a: Invalid Token\n $this->testInvalidToken();\n\n // Test 5b: Non-existent Resource\n $this->testNonExistentResource($socialAccount);\n } catch (Exception $e) {\n $this->recordResult('Error Handling', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testInvalidToken(): void\n {\n $this->info('Test 5a: Invalid Token');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken('invalid_token');\n $client = new DealsApi(null, $config);\n\n $client->getDealsSummary();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Invalid Token Error', false, \"Expected error but request succeeded in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Invalid Token Error', true, \"Correctly threw exception: {$e->getMessage()} in {$elapsed}ms\", $elapsed);\n }\n }\n\n private function testNonExistentResource(SocialAccount $socialAccount): void\n {\n $this->info('Test 5b: Non-existent Resource');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n $client = new DealsApi(null, $config);\n\n // Try to get a deal with a very high ID that likely doesn't exist\n // Official SDK has getDealsSummary which works without specific ID\n // Instead, let's test with an invalid field ID\n try {\n $fieldClient = new DealFieldsApi(null, $config);\n $fieldClient->getDealField(999999999); // Very high ID that likely doesn't exist\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', false, \"Expected error but request succeeded in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', true, \"Correctly threw exception: {$e->getMessage()} in {$elapsed}ms\", $elapsed);\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function recordResult(string $testName, bool $success, string $message, float $elapsed): void\n {\n $this->results[] = [\n 'test' => $testName,\n 'success' => $success,\n 'message' => $message,\n 'elapsed' => $elapsed,\n ];\n\n $status = $success ? '✅ PASS' : '❌ FAIL';\n $this->line(\" {$status} - {$testName}: {$message}\");\n }\n\n private function displayResults(): void\n {\n $this->newLine();\n $this->info('=== POC Test Results Summary ===');\n $this->newLine();\n\n $total = count($this->results);\n $passed = count(array_filter($this->results, fn ($r) => $r['success']));\n $failed = $total - $passed;\n\n $this->line(\"Total Tests: {$total}\");\n $this->line(\"Passed: {$passed}\");\n $this->line(\"Failed: {$failed}\");\n $this->newLine();\n\n $totalTime = array_sum(array_column($this->results, 'elapsed'));\n $this->line(\"Total Execution Time: {$totalTime}ms\");\n $this->newLine();\n\n if ($failed > 0) {\n $this->warn('Failed Tests:');\n foreach ($this->results as $result) {\n if (! $result['success']) {\n $this->line(\" - {$result['test']}: {$result['message']}\");\n }\n }\n $this->newLine();\n }\n\n $this->info('=== Detailed Results ===');\n foreach ($this->results as $result) {\n $status = $result['success'] ? '✅' : '❌';\n $this->line(\"{$status} {$result['test']} ({$result['elapsed']}ms): {$result['message']}\");\n }\n\n $this->newLine();\n $this->info('=== Recommendations ===');\n\n if ($passed === $total) {\n $this->info('✅ All tests passed! The official SDK is viable for migration.');\n $this->info('Next steps: Proceed with full migration planning.');\n } else {\n $this->warn('⚠️ Some tests failed. Review the failures above before proceeding.');\n $this->warn('Consider hybrid approach or investigate alternatives if critical operations fail.');\n }\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Console\\Commands\\Crm;\n\nuse Carbon\\Carbon;\nuse Exception;\nuse Illuminate\\Console\\Command;\nuse Jiminny\\Component\\Encryption\\EncryptedTokenManager;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Models\\User;\nuse Pipedrive\\versions\\v2\\Api\\ActivitiesApi;\nuse Pipedrive\\versions\\v2\\Api\\ActivityFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\DealFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\DealsApi;\nuse Pipedrive\\versions\\v2\\Api\\PersonFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\PersonsApi;\nuse Pipedrive\\versions\\v2\\Configuration;\n\nclass TestPipedriveOfficialSdkCommand extends Command\n{\n protected $signature = 'jiminny:test-pipedrive-official-sdk {teamId}';\n\n protected $description = 'Test official Pipedrive SDK (pipedrive/pipedrive) with existing OAuth tokens';\n\n private array $results = [];\n\n private EncryptedTokenManager $tokenManager;\n\n public function __construct(EncryptedTokenManager $tokenManager)\n {\n parent::__construct();\n $this->tokenManager = $tokenManager;\n }\n\n public function handle(): int\n {\n $teamId = (int) $this->argument('teamId');\n\n $this->info(\"Starting Pipedrive Official SDK POC for Team ID: {$teamId}\");\n $this->newLine();\n\n try {\n $this->runTests($teamId);\n } catch (Exception $e) {\n $this->error(\"POC failed with error: {$e->getMessage()}\");\n $this->error($e->getTraceAsString());\n\n return 1;\n }\n\n $this->displayResults();\n\n return 0;\n }\n\n private function runTests(int $teamId): void\n {\n $team = Team::find($teamId);\n if (! $team) {\n throw new Exception(\"Team with ID {$teamId} not found\");\n }\n\n $socialAccount = SocialAccount::where('provider', SocialAccount::PROVIDER_PIPEDRIVE)\n ->whereHas('sociable', function ($query) use ($team) {\n $query->where('team_id', $team->id);\n })\n ->orderByDesc('expires') // Get the most recently expiring token\n ->first();\n\n if (! $socialAccount) {\n throw new Exception(\"No Pipedrive social account found for team {$teamId}\");\n }\n\n $this->info(\"Found Pipedrive account for team: {$team->name}\");\n $this->newLine();\n\n // Test 1: OAuth Initialization\n $this->testOAuthInitialization($socialAccount);\n\n // Test 2: Basic CRUD Operations\n $this->testBasicCrudOperations($socialAccount);\n\n // Test 3: Field Metadata\n $this->testFieldMetadata($socialAccount);\n\n // Test 4: v2 API Support\n $this->testV2ApiSupport($socialAccount);\n\n // Test 5: Error Handling\n $this->testErrorHandling($socialAccount);\n }\n\n private function testOAuthInitialization(SocialAccount $socialAccount): void\n {\n $this->info('Test 1: OAuth Initialization');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n $client = new DealsApi(null, $config);\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('OAuth Initialization', true, \"Client initialized successfully in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('OAuth Initialization', false, $e->getMessage(), $elapsed);\n }\n\n $this->newLine();\n }\n\n private function testBasicCrudOperations(SocialAccount $socialAccount): void\n {\n $this->info('Test 2: Basic CRUD Operations');\n\n try {\n // Get the raw token from database\n $rawDbToken = $socialAccount->getProviderUserToken();\n $this->info(\"DB token (length: \" . strlen($rawDbToken) . \")\");\n $this->info(\"DB token preview: \" . substr($rawDbToken, 0, 20) . \"...\");\n\n // Check token expiry\n $expires = $socialAccount->expires;\n $this->info(\"Token expires at: \" . ($expires ? Carbon::createFromTimestamp($expires)->toDateTimeString() : 'null'));\n $this->info(\"Token is expired: \" . ($expires && $expires < time() ? 'YES' : 'NO'));\n\n // Test with the DB token directly\n $this->info(\"\\n--- Testing with DB token ---\");\n $config = new Configuration();\n $config->setAccessToken($rawDbToken);\n\n // Test 2a: Get Deals Summary\n $this->testGetDeals($config);\n\n // Test 2b: Get Persons\n $this->testGetPersons($config);\n\n // Test 2c: Get Activities\n $this->testGetActivities($config);\n } catch (Exception $e) {\n $this->recordResult('Basic CRUD Operations', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testCurrentSystemApproach(SocialAccount $socialAccount): void\n {\n $startTime = microtime(true);\n\n try {\n // Simulate how current system makes requests\n $token = $socialAccount->getProviderUserToken();\n $url = 'https://api.pipedrive.com/api/v2/deals';\n\n $headers = [\n 'Authorization' => 'Bearer ' . $token,\n 'Accept' => 'application/json',\n ];\n\n $client = new \\GuzzleHttp\\Client();\n $response = $client->get($url, [\n 'headers' => $headers,\n 'timeout' => 30,\n ]);\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $statusCode = $response->getStatusCode();\n $this->recordResult('Current System v2 API', $statusCode === 200, \"Status: {$statusCode} in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Current System v2 API', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetDeals(Configuration $config): void\n {\n $this->info('Test 2a: Get Deals');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new DealsApi(null, $config);\n // v2 SDK might have different method names\n // Try common v2 method names\n try {\n $result = $apiInstance->getDeals(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals', true, \"Retrieved deals in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method\n $result = $apiInstance->getDealsSummary();\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals Summary', true, \"Retrieved deals summary in {$elapsed}ms\", $elapsed);\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetPersons(Configuration $config): void\n {\n $this->info('Test 2b: Get Persons');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new PersonsApi(null, $config);\n // v2 SDK might have different method names\n try {\n $result = $apiInstance->getPersons(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', true, \"Retrieved persons in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method names\n try {\n $result = $apiInstance->getAllPersons(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', true, \"Retrieved persons in {$elapsed}ms\", $elapsed);\n } catch (Exception $e2) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', false, \"Method not found: {$e->getMessage()}\", $elapsed);\n }\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetActivities(Configuration $config): void\n {\n $this->info('Test 2c: Get Activities');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new ActivitiesApi(null, $config);\n // v2 SDK might have different method names\n try {\n $result = $apiInstance->getActivities(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', true, \"Retrieved activities in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method names\n try {\n $result = $apiInstance->getAllActivities(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', true, \"Retrieved activities in {$elapsed}ms\", $elapsed);\n } catch (Exception $e2) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', false, \"Method not found: {$e->getMessage()}\", $elapsed);\n }\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testFieldMetadata(SocialAccount $socialAccount): void\n {\n $this->info('Test 3: Field Metadata');\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n // Test 3a: Get Deal Fields\n $this->testGetDealFields($config);\n\n // Test 3b: Get Person Fields\n $this->testGetPersonFields($config);\n\n // Test 3c: Get Activity Fields\n $this->testGetActivityFields($config);\n } catch (Exception $e) {\n $this->recordResult('Field Metadata', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testGetDealFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new DealFieldsApi(null, $config);\n $result = $apiInstance->getDealFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Deal Fields', true, \"Retrieved {$count} deal fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deal Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetPersonFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new PersonFieldsApi(null, $config);\n $result = $apiInstance->getPersonFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Person Fields', true, \"Retrieved {$count} person fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Person Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetActivityFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new ActivityFieldsApi(null, $config);\n $result = $apiInstance->getActivityFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Activity Fields', true, \"Retrieved {$count} activity fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activity Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testV2ApiSupport(SocialAccount $socialAccount): void\n {\n $this->info('Test 4: v2 API Support (Cursor-based Pagination)');\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n $startTime = microtime(true);\n\n // Test v2 deals endpoint with cursor pagination\n // Note: The official SDK may or may not have v2 API support\n // This test will determine if v2 is available\n try {\n $apiInstance = new DealsApi(null, $config);\n $updatedSince = Carbon::now()->subDays(30)->toRfc3339String();\n $result = $apiInstance->getDealsSummary();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n\n // Check if response has cursor information (v2 indicator)\n // The response object doesn't have getAdditionalData method\n // Just test if the call works - v2 API support is limited in official SDK v1\n $this->recordResult('v2 API Support', false, \"v1 API works but v2 cursor pagination not available in official SDK v1. Retrieved summary in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('v2 API Support', false, $e->getMessage(), $elapsed);\n }\n } catch (Exception $e) {\n $this->recordResult('v2 API Support', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testErrorHandling(SocialAccount $socialAccount): void\n {\n $this->info('Test 5: Error Handling');\n\n try {\n // Test 5a: Invalid Token\n $this->testInvalidToken();\n\n // Test 5b: Non-existent Resource\n $this->testNonExistentResource($socialAccount);\n } catch (Exception $e) {\n $this->recordResult('Error Handling', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testInvalidToken(): void\n {\n $this->info('Test 5a: Invalid Token');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken('invalid_token');\n $client = new DealsApi(null, $config);\n\n $client->getDealsSummary();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Invalid Token Error', false, \"Expected error but request succeeded in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Invalid Token Error', true, \"Correctly threw exception: {$e->getMessage()} in {$elapsed}ms\", $elapsed);\n }\n }\n\n private function testNonExistentResource(SocialAccount $socialAccount): void\n {\n $this->info('Test 5b: Non-existent Resource');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n $client = new DealsApi(null, $config);\n\n // Try to get a deal with a very high ID that likely doesn't exist\n // Official SDK has getDealsSummary which works without specific ID\n // Instead, let's test with an invalid field ID\n try {\n $fieldClient = new DealFieldsApi(null, $config);\n $fieldClient->getDealField(999999999); // Very high ID that likely doesn't exist\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', false, \"Expected error but request succeeded in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', true, \"Correctly threw exception: {$e->getMessage()} in {$elapsed}ms\", $elapsed);\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function recordResult(string $testName, bool $success, string $message, float $elapsed): void\n {\n $this->results[] = [\n 'test' => $testName,\n 'success' => $success,\n 'message' => $message,\n 'elapsed' => $elapsed,\n ];\n\n $status = $success ? '✅ PASS' : '❌ FAIL';\n $this->line(\" {$status} - {$testName}: {$message}\");\n }\n\n private function displayResults(): void\n {\n $this->newLine();\n $this->info('=== POC Test Results Summary ===');\n $this->newLine();\n\n $total = count($this->results);\n $passed = count(array_filter($this->results, fn ($r) => $r['success']));\n $failed = $total - $passed;\n\n $this->line(\"Total Tests: {$total}\");\n $this->line(\"Passed: {$passed}\");\n $this->line(\"Failed: {$failed}\");\n $this->newLine();\n\n $totalTime = array_sum(array_column($this->results, 'elapsed'));\n $this->line(\"Total Execution Time: {$totalTime}ms\");\n $this->newLine();\n\n if ($failed > 0) {\n $this->warn('Failed Tests:');\n foreach ($this->results as $result) {\n if (! $result['success']) {\n $this->line(\" - {$result['test']}: {$result['message']}\");\n }\n }\n $this->newLine();\n }\n\n $this->info('=== Detailed Results ===');\n foreach ($this->results as $result) {\n $status = $result['success'] ? '✅' : '❌';\n $this->line(\"{$status} {$result['test']} ({$result['elapsed']}ms): {$result['message']}\");\n }\n\n $this->newLine();\n $this->info('=== Recommendations ===');\n\n if ($passed === $total) {\n $this->info('✅ All tests passed! The official SDK is viable for migration.');\n $this->info('Next steps: Proceed with full migration planning.');\n } else {\n $this->warn('⚠️ Some tests failed. Review the failures above before proceeding.');\n $this->warn('Consider hybrid approach or investigate alternatives if critical operations fail.');\n }\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
8824526876037876371
|
25694249123465860
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
S Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
2
Previous Highlighted Error
Next Highlighted Error
<template>
<AppDrawerModal v-bind="drawerAttrs" #default="{ $style: drawerStyle }">
<div :class="drawerStyle.formGrid">
<div :class="drawerStyle.sectionTitle">General</div>
<!-- Name -->
<AppFormField
field-label="Company name"
v-model="formState.name"
:required="true"
name="name"
rules="required"
data-testid="setup-trial-name"
/>
<!-- Owner Email -->
<AppFormField
v-if="!flags.ownerCreated"
type="email"
field-label="Owner Email"
v-model="formState.owner_email"
:required="true"
name="owner_email"
rules="required|email"
data-testid="setup-trial-owner-email"
/>
<AppFormField
v-else
field-label="Owner"
name="owner_id"
:required="true"
rules="required"
v-model="formState.owner_id"
:options="formData.admins.data || []"
:loading="formData.admins.loading"
type="select"
option-label="name"
track-by="id"
data-testid="setup-trial-owner-email"
/>
<!-- CRM -->
<AppFormField
v-model="formState.crm"
name="crm"
type="select"
field-label="CRM"
:required="true"
rules="required"
:options="formData.crmOptions.data || []"
track-by="id"
option-label="label"
:loading="formData.crmOptions.loading"
data-testid="setup-trial-crm"
:disabled="flags.ownerCreated"
/>
<!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->
<AppFormField
v-if="flags.teamCreated && formData.partners.data?.length > 1"
v-model="formState.partner_id"
name="partner_id"
type="select"
field-label="Partner"
:options="formData.partners.data || []"
track-by="id"
option-label="name"
:loading="formData.partners.loading"
data-testid="setup-trial-partner"
/>
<!-- Opportunity Sync Period -->
<AppFormField
:disabled="!requireSyncPeriod"
v-model="formState.opportunity_sync_period"
name="opportunity_sync_period"
type="select"
field-label="Import Opportunities Sync Period"
:required="requireSyncPeriod"
:rules="requireSyncPeriod ? 'required' : ''"
:options="syncPeriodOptions"
track-by="id"
option-label="label"
data-testid="setup-trial-sync-period"
/>
<!-- Calendar -->
<AppFormField
v-model="formState.calendar"
name="calendar"
type="radios"
ui="radios"
field-label="Calendar"
:required="true"
rules="required"
:options="formData.calendarOptions.data || []"
data-testid="setup-trial-calendar"
:disabled="flags.ownerCreated"
/>
<!-- Softphone -->
<div>
<div :class="[$style.fieldLabel, drawerStyle.fieldLabel]">
Softphone
</div>
<AppFormField
v-model="formState.features"
name="softphone"
type="checkbox"
:value="SOFTPHONE_FEATURE_ID"
:field-label="jiminnyVoiceLabel"
data-testid="setup-trial-softphone"
/>
</div>
<EditTeamAddressFields
v-if="softphoneEnabled"
:disabled="flags.billingDisabled"
/>
</div>
<div :class="$style.tearsGrid">
<div :class="$style.sectionTitle">
<div :class="drawerStyle.sectionTitle">Tiers & Add-ons</div>
<AppButton
icon="question"
label="Tiers explained"
mods="seamless link primary"
href="[URL_WITH_CREDENTIALS]
import useAppForm, {
SilentFormError,
} from "@/components/shared/AppFormElements/useAppForm";
import AppForm from "@/components/shared/AppFormElements/AppForm.vue";
import AppFormField from "@/components/shared/AppFormElements/AppFormField.vue";
import useAsyncData from "@/composables/useAsyncData";
import EditTeamAddressFields from "./EditTeamAddressFields.vue";
import AppDrawerModal from "@/components/shared/modals/AppDrawerModal.vue";
import { useDrawerModal } from "@/composables/useDrawerModal";
import { promptModal } from "jenesius-vue-modal";
import ChangeOwnerConfirmModal from "@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue";
import EventBus from "@/utils/event-bus";
import { getFeaturesData } from "./features";
import FeaturesGroup from "./FeaturesGroup.vue";
import FeaturesList from "./FeaturesList.vue";
import { ErrorMessage, useField } from "vee-validate";
import AppButton from "@/components/shared/Buttons/AppButton.vue";
import { useBrandedI18n } from "@/composables/useBrandedI18n";
// Define props
const props = defineProps({
data: {
type: Object,
required: true,
},
teamId: String,
});
const { tb } = useBrandedI18n();
// Branded i18n computed ref
const jiminnyVoiceLabel = tb("kiosk.edit-team.jiminny-voice--whitelabel");
const flags = reactive({
teamCreated: computed(() => !!props.data.id),
ownerCreated: computed(() => !!props.data.owner_id),
billingDisabled: computed(
() =>
!!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),
),
});
// Setup form
const form = useAppForm({
onSubmit,
toastSuccess: flags.teamCreated
? "Account updated successfully!"
: "Account created successfully!",
});
// Setup form state with initial values
const {
formState,
hasChanges,
updateSnapshot,
exportFormState,
softphoneEnabled,
} = useEditTeamForm(props.data);
// Load required data
const formData = reactive({
calendarOptions: useAsyncData(getCalendars, { showError: true }),
crmOptions: useAsyncData(getCrmServices, { showError: true }),
features: useAsyncData(getFeaturesData, { showError: true }),
partners: useAsyncData(getPartners, { showError: true }),
admins: reactive(useAdminsList()),
});
const { close } = useDrawerModal({ onClose });
const { tierModel, featuresGroups } = useFeaturesManager();
const { requireSyncPeriod } = useRequireSyncPeriod();
const drawerAttrs = computed(() => ({
as: AppForm,
title: flags.teamCreated ? "Edit Organization" : "Setup Account",
headerButtons: [
{
type: "submit",
label: "Save",
variant: "primary",
"data-testid": "setup-trial-submit",
disabled: !unref(hasChanges),
},
],
contentAttrs: {
busy: Object.values(formData).some(({ loading }) => loading),
},
}));
function onClose() {
return modalDiscardGuard({
onSave: form.submitHandler,
hasChanges: unref(hasChanges),
});
}
async function onSubmit() {
const ownerChanged =
flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;
if (ownerChanged) {
const confirmed = await promptModal(ChangeOwnerConfirmModal);
if (!confirmed) throw new SilentFormError("Owner change not confirmed");
}
const data = exportFormState();
// create or update the team
!flags.teamCreated
? await axios.post("/api/v1/settings/organizations", data)
: await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);
EventBus.$emit("team.updated");
// update form snapshot
updateSnapshot();
close();
}
function useFeaturesManager() {
const tierField = useField("tier_id", "required", {
initialValue: unref(formState).tier_id,
});
const tierModel = computed({
get() {
return unref(formState).tier_id;
},
set(tierId) {
setTier(tierId);
tierField.value.value = tierId;
},
});
const featuresGroups = computed(() => {
const { groups } = formData.features.data || {};
if (!groups) return [];
return [groups.TIER, groups["ADD_ON"]].filter(Boolean).flat();
});
function setTier(tierId) {
const selectedFeatures = new Set(unref(formState).features);
const { features, tiers } = formData.features.data;
// clear all tier features
features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));
const tier = tiers.find((tier) => tier.id === tierId);
// select only selected tiers features
[...tier.inherits, tierId]
.map((tierId) => features.byTier[tierId] || [])
.flat()
.forEach((feature) => selectedFeatures.add(feature.id));
Object.assign(unref(formState), {
features: Array.from(selectedFeatures),
tier_id: tierId,
});
}
return { tierModel, setTier, featuresGroups };
}
function useRequireSyncPeriod() {
// Computed property to check if opportunity sync period is required
const requireSyncPeriod = computed(() => {
return !!formData.crmOptions.data?.find(
(item) => formState.value.crm === item.id,
)?.requireInitialSyncPeriod;
});
watch(requireSyncPeriod, (required) => {
formState.value.opportunity_sync_period = required
? formState.value.opportunity_sync_period ||
DEFAULT_OPPORTUNITY_SYNC_PERIOD
: null;
});
return { requireSyncPeriod };
}
function useAdminsList() {
return useAsyncData(async () => {
const data = await fetchUsersData(props.data.id);
return data.filter((user) => user.roles?.some((e) => e.name == "admin"));
});
}
</script>
<style lang="less" module>
.fieldLabel:has(~ * :disabled) {
opacity: 0.6;
}
.tearsGrid {
display: grid;
padding-top: 10px;
gap: 10px;
.sectionTitle {
margin-top: 30px;
display: flex;
justify-content: space-between;
}
}
.errorMessage {
color: var(--color-danger);
}
.docsRef {
font-size: 14px;
}
</style>
Code changed:
Hide
Sync Changes
Hide This Notification
1
51
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Console\Commands\Crm;
use Carbon\Carbon;
use Exception;
use Illuminate\Console\Command;
use Jiminny\Component\Encryption\EncryptedTokenManager;
use Jiminny\Models\SocialAccount;
use Jiminny\Models\Team;
use Jiminny\Models\User;
use Pipedrive\versions\v2\Api\ActivitiesApi;
use Pipedrive\versions\v2\Api\ActivityFieldsApi;
use Pipedrive\versions\v2\Api\DealFieldsApi;
use Pipedrive\versions\v2\Api\DealsApi;
use Pipedrive\versions\v2\Api\PersonFieldsApi;
use Pipedrive\versions\v2\Api\PersonsApi;
use Pipedrive\versions\v2\Configuration;
class TestPipedriveOfficialSdkCommand extends Command
{
protected $signature = 'jiminny:test-pipedrive-official-sdk {teamId}';
protected $description = 'Test official Pipedrive SDK (pipedrive/pipedrive) with existing OAuth tokens';
private array $results = [];
private EncryptedTokenManager $tokenManager;
public function __construct(EncryptedTokenManager $tokenManager)
{
parent::__construct();
$this->tokenManager = $tokenManager;
}
public function handle(): int
{
$teamId = (int) $this->argument('teamId');
$this->info("Starting Pipedrive Official SDK POC for Team ID: {$teamId}");
$this->newLine();
try {
$this->runTests($teamId);
} catch (Exception $e) {
$this->error("POC failed with error: {$e->getMessage()}");
$this->error($e->getTraceAsString());
return 1;
}
$this->displayResults();
return 0;
}
private function runTests(int $teamId): void
{
$team = Team::find($teamId);
if (! $team) {
throw new Exception("Team with ID {$teamId} not found");
}
$socialAccount = SocialAccount::where('provider', SocialAccount::PROVIDER_PIPEDRIVE)
->whereHas('sociable', function ($query) use ($team) {
$query->where('team_id', $team->id);
})
->orderByDesc('expires') // Get the most recently expiring token
->first();
if (! $socialAccount) {
throw new Exception("No Pipedrive social account found for team {$teamId}");
}
$this->info("Found Pipedrive account for team: {$team->name}");
$this->newLine();
// Test 1: OAuth Initialization
$this->testOAuthInitialization($socialAccount);
// Test 2: Basic CRUD Operations
$this->testBasicCrudOperations($socialAccount);
// Test 3: Field Metadata
$this->testFieldMetadata($socialAccount);
// Test 4: v2 API Support
$this->testV2ApiSupport($socialAccount);
// Test 5: Error Handling
$this->testErrorHandling($socialAccount);
}
private function testOAuthInitialization(SocialAccount $socialAccount): void
{
$this->info('Test 1: OAuth Initialization');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$client = new DealsApi(null, $config);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('OAuth Initialization', true, "Client initialized successfully in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('OAuth Initialization', false, $e->getMessage(), $elapsed);
}
$this->newLine();
}
private function testBasicCrudOperations(SocialAccount $socialAccount): void
{
$this->info('Test 2: Basic CRUD Operations');
try {
// Get the raw token from database
$rawDbToken = $socialAccount->getProviderUserToken();
$this->info("DB token (length: " . strlen($rawDbToken) . ")");
$this->info("DB token preview: " . substr($rawDbToken, 0, 20) . "...");
// Check token expiry
$expires = $socialAccount->expires;
$this->info("Token expires at: " . ($expires ? Carbon::createFromTimestamp($expires)->toDateTimeString() : 'null'));
$this->info("Token is expired: " . ($expires && $expires < time() ? 'YES' : 'NO'));
// Test with the DB token directly
$this->info("\n--- Testing with DB token ---");
$config = new Configuration();
$config->setAccessToken($rawDbToken);
// Test 2a: Get Deals Summary
$this->testGetDeals($config);
// Test 2b: Get Persons
$this->testGetPersons($config);
// Test 2c: Get Activities
$this->testGetActivities($config);
} catch (Exception $e) {
$this->recordResult('Basic CRUD Operations', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testCurrentSystemApproach(SocialAccount $socialAccount): void
{
$startTime = microtime(true);
try {
// Simulate how current system makes requests
$token = $socialAccount->getProviderUserToken();
$url = 'https://api.pipedrive.com/api/v2/deals';
$headers = [
'Authorization' => 'Bearer ' . $token,
'Accept' => 'application/json',
];
$client = new \GuzzleHttp\Client();
$response = $client->get($url, [
'headers' => $headers,
'timeout' => 30,
]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$statusCode = $response->getStatusCode();
$this->recordResult('Current System v2 API', $statusCode === 200, "Status: {$statusCode} in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Current System v2 API', false, $e->getMessage(), $elapsed);
}
}
private function testGetDeals(Configuration $config): void
{
$this->info('Test 2a: Get Deals');
$startTime = microtime(true);
try {
$apiInstance = new DealsApi(null, $config);
// v2 SDK might have different method names
// Try common v2 method names
try {
$result = $apiInstance->getDeals(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals', true, "Retrieved deals in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method
$result = $apiInstance->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals Summary', true, "Retrieved deals summary in {$elapsed}ms", $elapsed);
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals', false, $e->getMessage(), $elapsed);
}
}
private function testGetPersons(Configuration $config): void
{
$this->info('Test 2b: Get Persons');
$startTime = microtime(true);
try {
$apiInstance = new PersonsApi(null, $config);
// v2 SDK might have different method names
try {
$result = $apiInstance->getPersons(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', true, "Retrieved persons in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method names
try {
$result = $apiInstance->getAllPersons(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', true, "Retrieved persons in {$elapsed}ms", $elapsed);
} catch (Exception $e2) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', false, "Method not found: {$e->getMessage()}", $elapsed);
}
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', false, $e->getMessage(), $elapsed);
}
}
private function testGetActivities(Configuration $config): void
{
$this->info('Test 2c: Get Activities');
$startTime = microtime(true);
try {
$apiInstance = new ActivitiesApi(null, $config);
// v2 SDK might have different method names
try {
$result = $apiInstance->getActivities(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', true, "Retrieved activities in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method names
try {
$result = $apiInstance->getAllActivities(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', true, "Retrieved activities in {$elapsed}ms", $elapsed);
} catch (Exception $e2) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', false, "Method not found: {$e->getMessage()}", $elapsed);
}
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', false, $e->getMessage(), $elapsed);
}
}
private function testFieldMetadata(SocialAccount $socialAccount): void
{
$this->info('Test 3: Field Metadata');
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
// Test 3a: Get Deal Fields
$this->testGetDealFields($config);
// Test 3b: Get Person Fields
$this->testGetPersonFields($config);
// Test 3c: Get Activity Fields
$this->testGetActivityFields($config);
} catch (Exception $e) {
$this->recordResult('Field Metadata', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testGetDealFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new DealFieldsApi(null, $config);
$result = $apiInstance->getDealFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Deal Fields', true, "Retrieved {$count} deal fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deal Fields', false, $e->getMessage(), $elapsed);
}
}
private function testGetPersonFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new PersonFieldsApi(null, $config);
$result = $apiInstance->getPersonFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Person Fields', true, "Retrieved {$count} person fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Person Fields', false, $e->getMessage(), $elapsed);
}
}
private function testGetActivityFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new ActivityFieldsApi(null, $config);
$result = $apiInstance->getActivityFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Activity Fields', true, "Retrieved {$count} activity fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activity Fields', false, $e->getMessage(), $elapsed);
}
}
private function testV2ApiSupport(SocialAccount $socialAccount): void
{
$this->info('Test 4: v2 API Support (Cursor-based Pagination)');
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$startTime = microtime(true);
// Test v2 deals endpoint with cursor pagination
// Note: The official SDK may or may not have v2 API support
// This test will determine if v2 is available
try {
$apiInstance = new DealsApi(null, $config);
$updatedSince = Carbon::now()->subDays(30)->toRfc3339String();
$result = $apiInstance->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
// Check if response has cursor information (v2 indicator)
// The response object doesn't have getAdditionalData method
// Just test if the call works - v2 API support is limited in official SDK v1
$this->recordResult('v2 API Support', false, "v1 API works but v2 cursor pagination not available in official SDK v1. Retrieved summary in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('v2 API Support', false, $e->getMessage(), $elapsed);
}
} catch (Exception $e) {
$this->recordResult('v2 API Support', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testErrorHandling(SocialAccount $socialAccount): void
{
$this->info('Test 5: Error Handling');
try {
// Test 5a: Invalid Token
$this->testInvalidToken();
// Test 5b: Non-existent Resource
$this->testNonExistentResource($socialAccount);
} catch (Exception $e) {
$this->recordResult('Error Handling', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testInvalidToken(): void
{
$this->info('Test 5a: Invalid Token');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken('invalid_token');
$client = new DealsApi(null, $config);
$client->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Invalid Token Error', false, "Expected error but request succeeded in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Invalid Token Error', true, "Correctly threw exception: {$e->getMessage()} in {$elapsed}ms", $elapsed);
}
}
private function testNonExistentResource(SocialAccount $socialAccount): void
{
$this->info('Test 5b: Non-existent Resource');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$client = new DealsApi(null, $config);
// Try to get a deal with a very high ID that likely doesn't exist
// Official SDK has getDealsSummary which works without specific ID
// Instead, let's test with an invalid field ID
try {
$fieldClient = new DealFieldsApi(null, $config);
$fieldClient->getDealField(999999999); // Very high ID that likely doesn't exist
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', false, "Expected error but request succeeded in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', true, "Correctly threw exception: {$e->getMessage()} in {$elapsed}ms", $elapsed);
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', false, $e->getMessage(), $elapsed);
}
}
private function recordResult(string $testName, bool $success, string $message, float $elapsed): void
{
$this->results[] = [
'test' => $testName,
'success' => $success,
'message' => $message,
'elapsed' => $elapsed,
];
$status = $success ? '✅ PASS' : '❌ FAIL';
$this->line(" {$status} - {$testName}: {$message}");
}
private function displayResults(): void
{
$this->newLine();
$this->info('=== POC Test Results Summary ===');
$this->newLine();
$total = count($this->results);
$passed = count(array_filter($this->results, fn ($r) => $r['success']));
$failed = $total - $passed;
$this->line("Total Tests: {$total}");
$this->line("Passed: {$passed}");
$this->line("Failed: {$failed}");
$this->newLine();
$totalTime = array_sum(array_column($this->results, 'elapsed'));
$this->line("Total Execution Time: {$totalTime}ms");
$this->newLine();
if ($failed > 0) {
$this->warn('Failed Tests:');
foreach ($this->results as $result) {
if (! $result['success']) {
$this->line(" - {$result['test']}: {$result['message']}");
}
}
$this->newLine();
}
$this->info('=== Detailed Results ===');
foreach ($this->results as $result) {
$status = $result['success'] ? '✅' : '❌';
$this->line("{$status} {$result['test']} ({$result['elapsed']}ms): {$result['message']}");
}
$this->newLine();
$this->info('=== Recommendations ===');
if ($passed === $total) {
$this->info('✅ All tests passed! The official SDK is viable for migration.');
$this->info('Next steps: Proceed with full migration planning.');
} else {
$this->warn('⚠️ Some tests failed. Review the failures above before proceeding.');
$this->warn('Consider hybrid approach or investigate alternatives if critical operations fail.');
}
}
}
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49812
|
NULL
|
0
|
2026-05-18T06:59:42.038302+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779087582038_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/jiminny/app/front-end/src/components faVsco.js – ~/jiminny/app/front-end/src/components/Settings/Kiosk/modals/EditTeamModal/EditTeamModal.vue...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
S Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"pipedrive-sdk-poc, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.05618351,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: pipedrive-sdk-poc","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
7266624862028544203
|
577591577001045378
|
visual_change
|
hybrid
|
NULL
|
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
S Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
iilPhostormVIewINavicareCodeLaravelKeractorFV faVsco.js°° pipedrive-sdk-pocProiect vlooolsude> D build> D config>@ contrib> @ database>@ docsv @ front-end• .vscode› O.yarn• → coverage› _ node_modules>L publicresourcesu scriotsW sromassetsN comoonents• M AiRenortsM connectD dashboardD DealinsightsM erorDadedM eynort-nortaleytension-installedM Invitationlaelaaleailelealeeonboard→ olavoackolavlistsv Settinas• Mtests_• M ActivitiesSearch• → AutomatedReports> M MobileAorv D modalsv M EditTeamModall• M tects |C ActivityController.ongconvertLeadActivitles.ongsyncriannat.ongc createrlaybookcreatedevent.ongc) IntearationApp/Service.php© LeadConverted.phd© CreateSelfCoachedEvent.phpC) CreateCommentedEvent.phoC) CreateSmsSentEvent.ohp© PlanhatActivityListener.php(C)AskAnvthinaPromotService.ohd(C)AutomatedReportsCommand.ohvphp api y2.ohdC) RequestGenerateReport.Job.oho/(C) AutomatedReportkesultonp(C) AutomatedRenort.ohrEditTeamModal.vue XKtemplate:<AppDrawerModal v-bind="drawerAttrs" #default="{ $style: drawerStyle }">ediv •clacc-iidnawenStvlo formGnidil,<div :class="drawerStyle.sectionTitle">General</div><AppFormFieldfield-label="Company name'v-model="tormstate.name"required="true"rules="reouzreddata-testid="setun-trial-name"<-- Owner Emanl --,<ApoFormFieldv-ife"flaas. ownercreated"tvne="emanl"field-label="Owner Fmail"V-model="formState ownen emai]"reaurrede"true"name="ownen email"rules="required|email"data-tectid="cetun-tnial-ounen-oma.l"<AppFormFieldv-elsefield-lahel="Nwnen"name="ownen idu:required="true'rules="requ1red"v-model="formState.owner_ id"options="formData.admins.data 11 []":Loading="formbata.admins.loading"tyoe="selontnV EditTeamAddreccFields vueVCditToamModal vuatrack-bv="1d"is fonturoc icdata-testid="setup-trial-owner-emar"V FeaturesGroup.vueolner Code will hoin INF to underctand vour Laravel ann code II Generate II Don't Show Anvmore (25 minutes aao)=custom.log4 SF [jiminny@localhost]& console (STAGINGIA HS_local [jiminny@localhost]A console [PROD]© TestPipedriveOfficialSdkCommand.php X © Kernel.phpuse Jiminny models redmuse Pipedrive verszons vz Ap1 ACCIV1CleSAp1use Pipedrive\versions\v2\Api ActivityFieldsApi:use Pipedrave versions vz Ap1 Leaurielasapluse Pipedrive\versions\v2 \Api\DealsApi:use Pipearive versions vz Ap1 Personrlelasapluse Pipedrive verszons Vz Ap1 Personsap1.use Pipeorive verszonsvz contzquracion:11 usage22124 6t26 6t32 đprotected Ssignature = "11minnv:test-p1pedrive-officral-sok teamid-'*protected Sdescrintion = ITest official Pinednive SDK (oinedrive/pinednive) with exiorivate arrav Sresults =1lusageprivate EncryptedTokenManager $tokenManager:no usagespublic function __construct(EncryptedTokenManager $tokenManager)parent:: construct?).sthls->cokennanager = Scokenmanager;public function handled: intf...}private function runTests(int SteamId): void{...}1 usageprivate function testOAuthInitialization(SocialAccount SsocialAccount): voidf...?11 usageorivate function testBasicCrudOperations(SocialAccount SsocialAccount: void$this->info( string: 'Test 2: Basic CRUD Operations'):tny-Il Get the naw token from datahaseSnawhhToken = ScocialAccount->ae+ProviderilsenToken0•.strlen(SrawDbToken)."")•Trial Owner Role SelecNot Shown when editingModal used for botn create/editOwner gets selected role + AdminAlways gets Admin + RecorderKeplace Uppontuniy sync Perlod locatlolCurrently at lines 71-84Part of Create TeamHandled in EditTeamModalImplementation PlanFrontend Changes1. EditTeamModal.vue• Add role selection field below Owner email (after line 39Onlv show when creatina team ( Iflaas.teamGreated )• Move Opportunity Sync Period field to 3rd row, 1st column (after CRM field)Add role options: Recorder, Recorder & Voice, Analyst• Add owner role to form state1. CreateTeamRequest.oho• Add validation rule for ouner role field• Allowed values: recorder, recorder and voice, analyst• Onlv required when creatina (not editina)2. UserinvitationDTO::forOwner()• Accept owner_role parameter from request• Map role name to role IDAlways add ROLE_ADMIN to the role IDs (as per requirement: "selected role + Admin permissions")• Replace hardcoded ROLE RECORDER with selected role3. EditTeamRequest.oho• Ensure ouner role is NOT acceoted when editina (validation should reiect it)Key Files to Modify1. /front phoditreamModal/Ed1tTeamModal.vue2./aoo/Htto/Requests/Settinas/Teams/CreateTeamRequest.ohv3./app/DT0/Inv1tation/UserInv1tat1onDT0.php4./apo/Htto/Requests/Settinas/Teams/EditTeamRequest.ohoTectina Considerationc•Test role assignment for all 3 options (Recorder, Recorder & Voice, Analyst)Verity Admin permission is alwavs addedEnsure field is hidden when editing existing team• Verify Opportunity Sync Period moves to correct location• Test owner sign-in flow with each role option"Dally - Platrorm• om lert100% 2. Mon 18 May 9:59:41AskJiminnyReportActivityServiceTest v+0 ..Condition: v-ir="!Tlags. teamcreated"Modify UserInvitationDT0:: for0wner() to use selected role + AdminMove Opportunity Sync Period, add role field in its placeSame component handles bothAsk anvthina (&4-L)SWF.16Cal aW Windsurf Team1-1.UTE.8Po 2 spaces...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
49811
|
1769
|
62
|
2026-05-18T06:59:43.298546+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-18/1779 /Users/lukas/.screenpipe/data/data/2026-05-18/1779087583298_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/jiminny/app/front-end/src/components faVsco.js – ~/jiminny/app/front-end/src/components/Settings/Kiosk/modals/EditTeamModal/EditTeamModal.vue...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
S Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
Analyzing…
<template>
<AppDrawerModal v-bind="drawerAttrs" #default="{ $style: drawerStyle }">
<div :class="drawerStyle.formGrid">
<div :class="drawerStyle.sectionTitle">General</div>
<!-- Name -->
<AppFormField
field-label="Company name"
v-model="formState.name"
:required="true"
name="name"
rules="required"
data-testid="setup-trial-name"
/>
<!-- Owner Email -->
<AppFormField
v-if="!flags.ownerCreated"
type="email"
field-label="Owner Email"
v-model="formState.owner_email"
:required="true"
name="owner_email"
rules="required|email"
data-testid="setup-trial-owner-email"
/>
<AppFormField
v-else
field-label="Owner"
name="owner_id"
:required="true"
rules="required"
v-model="formState.owner_id"
:options="formData.admins.data || []"
:loading="formData.admins.loading"
type="select"
option-label="name"
track-by="id"
data-testid="setup-trial-owner-email"
/>
<!-- CRM -->
<AppFormField
v-model="formState.crm"
name="crm"
type="select"
field-label="CRM"
:required="true"
rules="required"
:options="formData.crmOptions.data || []"
track-by="id"
option-label="label"
:loading="formData.crmOptions.loading"
data-testid="setup-trial-crm"
:disabled="flags.ownerCreated"
/>
<!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->
<AppFormField
v-if="flags.teamCreated && formData.partners.data?.length > 1"
v-model="formState.partner_id"
name="partner_id"
type="select"
field-label="Partner"
:options="formData.partners.data || []"
track-by="id"
option-label="name"
:loading="formData.partners.loading"
data-testid="setup-trial-partner"
/>
<!-- Opportunity Sync Period -->
<AppFormField
:disabled="!requireSyncPeriod"
v-model="formState.opportunity_sync_period"
name="opportunity_sync_period"
type="select"
field-label="Import Opportunities Sync Period"
:required="requireSyncPeriod"
:rules="requireSyncPeriod ? 'required' : ''"
:options="syncPeriodOptions"
track-by="id"
option-label="label"
data-testid="setup-trial-sync-period"
/>
<!-- Calendar -->
<AppFormField
v-model="formState.calendar"
name="calendar"
type="radios"
ui="radios"
field-label="Calendar"
:required="true"
rules="required"
:options="formData.calendarOptions.data || []"
data-testid="setup-trial-calendar"
:disabled="flags.ownerCreated"
/>
<!-- Softphone -->
<div>
<div :class="[$style.fieldLabel, drawerStyle.fieldLabel]">
Softphone
</div>
<AppFormField
v-model="formState.features"
name="softphone"
type="checkbox"
:value="SOFTPHONE_FEATURE_ID"
:field-label="jiminnyVoiceLabel"
data-testid="setup-trial-softphone"
/>
</div>
<EditTeamAddressFields
v-if="softphoneEnabled"
:disabled="flags.billingDisabled"
/>
</div>
<div :class="$style.tearsGrid">
<div :class="$style.sectionTitle">
<div :class="drawerStyle.sectionTitle">Tiers & Add-ons</div>
<AppButton
icon="question"
label="Tiers explained"
mods="seamless link primary"
href="[URL_WITH_CREDENTIALS]
import useAppForm, {
SilentFormError,
} from "@/components/shared/AppFormElements/useAppForm";
import AppForm from "@/components/shared/AppFormElements/AppForm.vue";
import AppFormField from "@/components/shared/AppFormElements/AppFormField.vue";
import useAsyncData from "@/composables/useAsyncData";
import EditTeamAddressFields from "./EditTeamAddressFields.vue";
import AppDrawerModal from "@/components/shared/modals/AppDrawerModal.vue";
import { useDrawerModal } from "@/composables/useDrawerModal";
import { promptModal } from "jenesius-vue-modal";
import ChangeOwnerConfirmModal from "@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue";
import EventBus from "@/utils/event-bus";
import { getFeaturesData } from "./features";
import FeaturesGroup from "./FeaturesGroup.vue";
import FeaturesList from "./FeaturesList.vue";
import { ErrorMessage, useField } from "vee-validate";
import AppButton from "@/components/shared/Buttons/AppButton.vue";
import { useBrandedI18n } from "@/composables/useBrandedI18n";
// Define props
const props = defineProps({
data: {
type: Object,
required: true,
},
teamId: String,
});
const { tb } = useBrandedI18n();
// Branded i18n computed ref
const jiminnyVoiceLabel = tb("kiosk.edit-team.jiminny-voice--whitelabel");
const flags = reactive({
teamCreated: computed(() => !!props.data.id),
ownerCreated: computed(() => !!props.data.owner_id),
billingDisabled: computed(
() =>
!!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),
),
});
// Setup form
const form = useAppForm({
onSubmit,
toastSuccess: flags.teamCreated
? "Account updated successfully!"
: "Account created successfully!",
});
// Setup form state with initial values
const {
formState,
hasChanges,
updateSnapshot,
exportFormState,
softphoneEnabled,
} = useEditTeamForm(props.data);
// Load required data
const formData = reactive({
calendarOptions: useAsyncData(getCalendars, { showError: true }),
crmOptions: useAsyncData(getCrmServices, { showError: true }),
features: useAsyncData(getFeaturesData, { showError: true }),
partners: useAsyncData(getPartners, { showError: true }),
admins: reactive(useAdminsList()),
});
const { close } = useDrawerModal({ onClose });
const { tierModel, featuresGroups } = useFeaturesManager();
const { requireSyncPeriod } = useRequireSyncPeriod();
const drawerAttrs = computed(() => ({
as: AppForm,
title: flags.teamCreated ? "Edit Organization" : "Setup Account",
headerButtons: [
{
type: "submit",
label: "Save",
variant: "primary",
"data-testid": "setup-trial-submit",
disabled: !unref(hasChanges),
},
],
contentAttrs: {
busy: Object.values(formData).some(({ loading }) => loading),
},
}));
function onClose() {
return modalDiscardGuard({
onSave: form.submitHandler,
hasChanges: unref(hasChanges),
});
}
async function onSubmit() {
const ownerChanged =
flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;
if (ownerChanged) {
const confirmed = await promptModal(ChangeOwnerConfirmModal);
if (!confirmed) throw new SilentFormError("Owner change not confirmed");
}
const data = exportFormState();
// create or update the team
!flags.teamCreated
? await axios.post("/api/v1/settings/organizations", data)
: await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);
EventBus.$emit("team.updated");
// update form snapshot
updateSnapshot();
close();
}
function useFeaturesManager() {
const tierField = useField("tier_id", "required", {
initialValue: unref(formState).tier_id,
});
const tierModel = computed({
get() {
return unref(formState).tier_id;
},
set(tierId) {
setTier(tierId);
tierField.value.value = tierId;
},
});
const featuresGroups = computed(() => {
const { groups } = formData.features.data || {};
if (!groups) return [];
return [groups.TIER, groups["ADD_ON"]].filter(Boolean).flat();
});
function setTier(tierId) {
const selectedFeatures = new Set(unref(formState).features);
const { features, tiers } = formData.features.data;
// clear all tier features
features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));
const tier = tiers.find((tier) => tier.id === tierId);
// select only selected tiers features
[...tier.inherits, tierId]
.map((tierId) => features.byTier[tierId] || [])
.flat()
.forEach((feature) => selectedFeatures.add(feature.id));
Object.assign(unref(formState), {
features: Array.from(selectedFeatures),
tier_id: tierId,
});
}
return { tierModel, setTier, featuresGroups };
}
function useRequireSyncPeriod() {
// Computed property to check if opportunity sync period is required
const requireSyncPeriod = computed(() => {
return !!formData.crmOptions.data?.find(
(item) => formState.value.crm === item.id,
)?.requireInitialSyncPeriod;
});
watch(requireSyncPeriod, (required) => {
formState.value.opportunity_sync_period = required
? formState.value.opportunity_sync_period ||
DEFAULT_OPPORTUNITY_SYNC_PERIOD
: null;
});
return { requireSyncPeriod };
}
function useAdminsList() {
return useAsyncData(async () => {
const data = await fetchUsersData(props.data.id);
return data.filter((user) => user.roles?.some((e) => e.name == "admin"));
});
}
</script>
<style lang="less" module>
.fieldLabel:has(~ * :disabled) {
opacity: 0.6;
}
.tearsGrid {
display: grid;
padding-top: 10px;
gap: 10px;
.sectionTitle {
margin-top: 30px;
display: flex;
justify-content: space-between;
}
}
.errorMessage {
color: var(--color-danger);
}
.docsRef {
font-size: 14px;
}
</style>
Code changed:
Hide
Sync Changes
Hide This Notification
1
51
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Console\Commands\Crm;
use Carbon\Carbon;
use Exception;
use Illuminate\Console\Command;
use Jiminny\Component\Encryption\EncryptedTokenManager;
use Jiminny\Models\SocialAccount;
use Jiminny\Models\Team;
use Jiminny\Models\User;
use Pipedrive\versions\v2\Api\ActivitiesApi;
use Pipedrive\versions\v2\Api\ActivityFieldsApi;
use Pipedrive\versions\v2\Api\DealFieldsApi;
use Pipedrive\versions\v2\Api\DealsApi;
use Pipedrive\versions\v2\Api\PersonFieldsApi;
use Pipedrive\versions\v2\Api\PersonsApi;
use Pipedrive\versions\v2\Configuration;
class TestPipedriveOfficialSdkCommand extends Command
{
protected $signature = 'jiminny:test-pipedrive-official-sdk {teamId}';
protected $description = 'Test official Pipedrive SDK (pipedrive/pipedrive) with existing OAuth tokens';
private array $results = [];
private EncryptedTokenManager $tokenManager;
public function __construct(EncryptedTokenManager $tokenManager)
{
parent::__construct();
$this->tokenManager = $tokenManager;
}
public function handle(): int
{
$teamId = (int) $this->argument('teamId');
$this->info("Starting Pipedrive Official SDK POC for Team ID: {$teamId}");
$this->newLine();
try {
$this->runTests($teamId);
} catch (Exception $e) {
$this->error("POC failed with error: {$e->getMessage()}");
$this->error($e->getTraceAsString());
return 1;
}
$this->displayResults();
return 0;
}
private function runTests(int $teamId): void
{
$team = Team::find($teamId);
if (! $team) {
throw new Exception("Team with ID {$teamId} not found");
}
$socialAccount = SocialAccount::where('provider', SocialAccount::PROVIDER_PIPEDRIVE)
->whereHas('sociable', function ($query) use ($team) {
$query->where('team_id', $team->id);
})
->orderByDesc('expires') // Get the most recently expiring token
->first();
if (! $socialAccount) {
throw new Exception("No Pipedrive social account found for team {$teamId}");
}
$this->info("Found Pipedrive account for team: {$team->name}");
$this->newLine();
// Test 1: OAuth Initialization
$this->testOAuthInitialization($socialAccount);
// Test 2: Basic CRUD Operations
$this->testBasicCrudOperations($socialAccount);
// Test 3: Field Metadata
$this->testFieldMetadata($socialAccount);
// Test 4: v2 API Support
$this->testV2ApiSupport($socialAccount);
// Test 5: Error Handling
$this->testErrorHandling($socialAccount);
}
private function testOAuthInitialization(SocialAccount $socialAccount): void
{
$this->info('Test 1: OAuth Initialization');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$client = new DealsApi(null, $config);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('OAuth Initialization', true, "Client initialized successfully in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('OAuth Initialization', false, $e->getMessage(), $elapsed);
}
$this->newLine();
}
private function testBasicCrudOperations(SocialAccount $socialAccount): void
{
$this->info('Test 2: Basic CRUD Operations');
try {
// Get the raw token from database
$rawDbToken = $socialAccount->getProviderUserToken();
$this->info("DB token (length: " . strlen($rawDbToken) . ")");
$this->info("DB token preview: " . substr($rawDbToken, 0, 20) . "...");
// Check token expiry
$expires = $socialAccount->expires;
$this->info("Token expires at: " . ($expires ? Carbon::createFromTimestamp($expires)->toDateTimeString() : 'null'));
$this->info("Token is expired: " . ($expires && $expires < time() ? 'YES' : 'NO'));
// Test with the DB token directly
$this->info("\n--- Testing with DB token ---");
$config = new Configuration();
$config->setAccessToken($rawDbToken);
// Test 2a: Get Deals Summary
$this->testGetDeals($config);
// Test 2b: Get Persons
$this->testGetPersons($config);
// Test 2c: Get Activities
$this->testGetActivities($config);
} catch (Exception $e) {
$this->recordResult('Basic CRUD Operations', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testCurrentSystemApproach(SocialAccount $socialAccount): void
{
$startTime = microtime(true);
try {
// Simulate how current system makes requests
$token = $socialAccount->getProviderUserToken();
$url = 'https://api.pipedrive.com/api/v2/deals';
$headers = [
'Authorization' => 'Bearer ' . $token,
'Accept' => 'application/json',
];
$client = new \GuzzleHttp\Client();
$response = $client->get($url, [
'headers' => $headers,
'timeout' => 30,
]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$statusCode = $response->getStatusCode();
$this->recordResult('Current System v2 API', $statusCode === 200, "Status: {$statusCode} in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Current System v2 API', false, $e->getMessage(), $elapsed);
}
}
private function testGetDeals(Configuration $config): void
{
$this->info('Test 2a: Get Deals');
$startTime = microtime(true);
try {
$apiInstance = new DealsApi(null, $config);
// v2 SDK might have different method names
// Try common v2 method names
try {
$result = $apiInstance->getDeals(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals', true, "Retrieved deals in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method
$result = $apiInstance->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals Summary', true, "Retrieved deals summary in {$elapsed}ms", $elapsed);
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals', false, $e->getMessage(), $elapsed);
}
}
private function testGetPersons(Configuration $config): void
{
$this->info('Test 2b: Get Persons');
$startTime = microtime(true);
try {
$apiInstance = new PersonsApi(null, $config);
// v2 SDK might have different method names
try {
$result = $apiInstance->getPersons(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', true, "Retrieved persons in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method names
try {
$result = $apiInstance->getAllPersons(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', true, "Retrieved persons in {$elapsed}ms", $elapsed);
} catch (Exception $e2) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', false, "Method not found: {$e->getMessage()}", $elapsed);
}
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', false, $e->getMessage(), $elapsed);
}
}
private function testGetActivities(Configuration $config): void
{
$this->info('Test 2c: Get Activities');
$startTime = microtime(true);
try {
$apiInstance = new ActivitiesApi(null, $config);
// v2 SDK might have different method names
try {
$result = $apiInstance->getActivities(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', true, "Retrieved activities in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method names
try {
$result = $apiInstance->getAllActivities(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', true, "Retrieved activities in {$elapsed}ms", $elapsed);
} catch (Exception $e2) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', false, "Method not found: {$e->getMessage()}", $elapsed);
}
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', false, $e->getMessage(), $elapsed);
}
}
private function testFieldMetadata(SocialAccount $socialAccount): void
{
$this->info('Test 3: Field Metadata');
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
// Test 3a: Get Deal Fields
$this->testGetDealFields($config);
// Test 3b: Get Person Fields
$this->testGetPersonFields($config);
// Test 3c: Get Activity Fields
$this->testGetActivityFields($config);
} catch (Exception $e) {
$this->recordResult('Field Metadata', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testGetDealFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new DealFieldsApi(null, $config);
$result = $apiInstance->getDealFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Deal Fields', true, "Retrieved {$count} deal fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deal Fields', false, $e->getMessage(), $elapsed);
}
}
private function testGetPersonFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new PersonFieldsApi(null, $config);
$result = $apiInstance->getPersonFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Person Fields', true, "Retrieved {$count} person fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Person Fields', false, $e->getMessage(), $elapsed);
}
}
private function testGetActivityFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new ActivityFieldsApi(null, $config);
$result = $apiInstance->getActivityFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Activity Fields', true, "Retrieved {$count} activity fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activity Fields', false, $e->getMessage(), $elapsed);
}
}
private function testV2ApiSupport(SocialAccount $socialAccount): void
{
$this->info('Test 4: v2 API Support (Cursor-based Pagination)');
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$startTime = microtime(true);
// Test v2 deals endpoint with cursor pagination
// Note: The official SDK may or may not have v2 API support
// This test will determine if v2 is available
try {
$apiInstance = new DealsApi(null, $config);
$updatedSince = Carbon::now()->subDays(30)->toRfc3339String();
$result = $apiInstance->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
// Check if response has cursor information (v2 indicator)
// The response object doesn't have getAdditionalData method
// Just test if the call works - v2 API support is limited in official SDK v1
$this->recordResult('v2 API Support', false, "v1 API works but v2 cursor pagination not available in official SDK v1. Retrieved summary in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('v2 API Support', false, $e->getMessage(), $elapsed);
}
} catch (Exception $e) {
$this->recordResult('v2 API Support', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testErrorHandling(SocialAccount $socialAccount): void
{
$this->info('Test 5: Error Handling');
try {
// Test 5a: Invalid Token
$this->testInvalidToken();
// Test 5b: Non-existent Resource
$this->testNonExistentResource($socialAccount);
} catch (Exception $e) {
$this->recordResult('Error Handling', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testInvalidToken(): void
{
$this->info('Test 5a: Invalid Token');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken('invalid_token');
$client = new DealsApi(null, $config);
$client->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Invalid Token Error', false, "Expected error but request succeeded in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Invalid Token Error', true, "Correctly threw exception: {$e->getMessage()} in {$elapsed}ms", $elapsed);
}
}
private function testNonExistentResource(SocialAccount $socialAccount): void
{
$this->info('Test 5b: Non-existent Resource');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$client = new DealsApi(null, $config);
// Try to get a deal with a very high ID that likely doesn't exist
// Official SDK has getDealsSummary which works without specific ID
// Instead, let's test with an invalid field ID
try {
$fieldClient = new DealFieldsApi(null, $config);
$fieldClient->getDealField(999999999); // Very high ID that likely doesn't exist
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', false, "Expected error but request succeeded in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', true, "Correctly threw exception: {$e->getMessage()} in {$elapsed}ms", $elapsed);
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', false, $e->getMessage(), $elapsed);
}
}
private function recordResult(string $testName, bool $success, string $message, float $elapsed): void
{
$this->results[] = [
'test' => $testName,
'success' => $success,
'message' => $message,
'elapsed' => $elapsed,
];
$status = $success ? '✅ PASS' : '❌ FAIL';
$this->line(" {$status} - {$testName}: {$message}");
}
private function displayResults(): void
{
$this->newLine();
$this->info('=== POC Test Results Summary ===');
$this->newLine();
$total = count($this->results);
$passed = count(array_filter($this->results, fn ($r) => $r['success']));
$failed = $total - $passed;
$this->line("Total Tests: {$total}");
$this->line("Passed: {$passed}");
$this->line("Failed: {$failed}");
$this->newLine();
$totalTime = array_sum(array_column($this->results, 'elapsed'));
$this->line("Total Execution Time: {$totalTime}ms");
$this->newLine();
if ($failed > 0) {
$this->warn('Failed Tests:');
foreach ($this->results as $result) {
if (! $result['success']) {
$this->line(" - {$result['test']}: {$result['message']}");
}
}
$this->newLine();
}
$this->info('=== Detailed Results ===');
foreach ($this->results as $result) {
$status = $result['success'] ? '✅' : '❌';
$this->line("{$status} {$result['test']} ({$result['elapsed']}ms): {$result['message']}");
}
$this->newLine();
$this->info('=== Recommendations ===');
if ($passed === $total) {
$this->info('✅ All tests passed! The official SDK is viable for migration.');
$this->info('Next steps: Proceed with full migration planning.');
} else {
$this->warn('⚠️ Some tests failed. Review the failures above before proceeding.');
$this->warn('Consider hybrid approach or investigate alternatives if critical operations fail.');
}
}
}
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app, folder
.circleci, folder
.cursor, folder
.github
.sonarlint, folder
.vscode, folder
.windsurf, folder...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"pipedrive-sdk-poc, menu","depth":5,"on_screen":true,"help_text":"Git Branch: pipedrive-sdk-poc","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Analyzing…","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXTextArea","text":"<template>\n <AppDrawerModal v-bind=\"drawerAttrs\" #default=\"{ $style: drawerStyle }\">\n <div :class=\"drawerStyle.formGrid\">\n <div :class=\"drawerStyle.sectionTitle\">General</div>\n <!-- Name -->\n <AppFormField\n field-label=\"Company name\"\n v-model=\"formState.name\"\n :required=\"true\"\n name=\"name\"\n rules=\"required\"\n data-testid=\"setup-trial-name\"\n />\n\n <!-- Owner Email -->\n <AppFormField\n v-if=\"!flags.ownerCreated\"\n type=\"email\"\n field-label=\"Owner Email\"\n v-model=\"formState.owner_email\"\n :required=\"true\"\n name=\"owner_email\"\n rules=\"required|email\"\n data-testid=\"setup-trial-owner-email\"\n />\n <AppFormField\n v-else\n field-label=\"Owner\"\n name=\"owner_id\"\n :required=\"true\"\n rules=\"required\"\n v-model=\"formState.owner_id\"\n :options=\"formData.admins.data || []\"\n :loading=\"formData.admins.loading\"\n type=\"select\"\n option-label=\"name\"\n track-by=\"id\"\n data-testid=\"setup-trial-owner-email\"\n />\n\n <!-- CRM -->\n <AppFormField\n v-model=\"formState.crm\"\n name=\"crm\"\n type=\"select\"\n field-label=\"CRM\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.crmOptions.data || []\"\n track-by=\"id\"\n option-label=\"label\"\n :loading=\"formData.crmOptions.loading\"\n data-testid=\"setup-trial-crm\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->\n <AppFormField\n v-if=\"flags.teamCreated && formData.partners.data?.length > 1\"\n v-model=\"formState.partner_id\"\n name=\"partner_id\"\n type=\"select\"\n field-label=\"Partner\"\n :options=\"formData.partners.data || []\"\n track-by=\"id\"\n option-label=\"name\"\n :loading=\"formData.partners.loading\"\n data-testid=\"setup-trial-partner\"\n />\n\n <!-- Opportunity Sync Period -->\n <AppFormField\n :disabled=\"!requireSyncPeriod\"\n v-model=\"formState.opportunity_sync_period\"\n name=\"opportunity_sync_period\"\n type=\"select\"\n field-label=\"Import Opportunities Sync Period\"\n :required=\"requireSyncPeriod\"\n :rules=\"requireSyncPeriod ? 'required' : ''\"\n :options=\"syncPeriodOptions\"\n track-by=\"id\"\n option-label=\"label\"\n data-testid=\"setup-trial-sync-period\"\n />\n\n <!-- Calendar -->\n <AppFormField\n v-model=\"formState.calendar\"\n name=\"calendar\"\n type=\"radios\"\n ui=\"radios\"\n field-label=\"Calendar\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.calendarOptions.data || []\"\n data-testid=\"setup-trial-calendar\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Softphone -->\n <div>\n <div :class=\"[$style.fieldLabel, drawerStyle.fieldLabel]\">\n Softphone\n </div>\n <AppFormField\n v-model=\"formState.features\"\n name=\"softphone\"\n type=\"checkbox\"\n :value=\"SOFTPHONE_FEATURE_ID\"\n :field-label=\"jiminnyVoiceLabel\"\n data-testid=\"setup-trial-softphone\"\n />\n </div>\n\n <EditTeamAddressFields\n v-if=\"softphoneEnabled\"\n :disabled=\"flags.billingDisabled\"\n />\n\n </div>\n <div :class=\"$style.tearsGrid\">\n <div :class=\"$style.sectionTitle\">\n <div :class=\"drawerStyle.sectionTitle\">Tiers & Add-ons</div>\n <AppButton\n icon=\"question\"\n label=\"Tiers explained\"\n mods=\"seamless link primary\"\n href=\"https://jiminny.atlassian.net/wiki/external/OGRhNWI0NzJjZTc0NDg1YTg5MTU4NGYwZWU3NTc2OGM\"\n :class=\"$style.docsRef\"\n />\n </div>\n <ErrorMessage name=\"tier_id\">\n <div :class=\"$style.errorMessage\">Selecting tier is required</div>\n </ErrorMessage>\n <FeaturesGroup\n v-for=\"group in featuresGroups\"\n :key=\"group.tier?.id || group.type\"\n v-bind=\"{ group, tiers: formData.features.data.tiers }\"\n v-model:tier=\"tierModel\"\n v-model:features=\"formState.features\"\n />\n <template\n v-if=\"\n flags.teamCreated &&\n formData.features.data?.features.byType.DEV?.length\n \"\n >\n <div :class=\"[$style.sectionTitle, drawerStyle.sectionTitle]\">\n Technical Settings\n </div>\n <FeaturesList\n v-model=\"formState.features\"\n :features=\"formData.features.data.features.byType.DEV\"\n />\n </template>\n </div>\n </AppDrawerModal>\n</template>\n<script>\nconst SOFTPHONE_FEATURE_ID = \"DIALER\";\n\n// Options for opportunity sync period\nconst syncPeriodOptions = [\n { id: \"3m\", label: \"3 Months\" },\n { id: \"6m\", label: \"6 Months\" },\n { id: \"12m\", label: \"12 Months\" },\n];\n\nconst DEFAULT_OPPORTUNITY_SYNC_PERIOD = syncPeriodOptions[0].id;\n\nexport const useEditTeamForm = toSelfProvidingHook((data) => {\n const formState = ref({\n features: [],\n ...data,\n });\n\n const formStateSnapshot = ref();\n\n updateSnapshot();\n\n const hasChanges = computed(\n () => !isEqual(formState.value, formStateSnapshot.value),\n );\n\n const softphoneEnabled = computed(() =>\n unref(formState).features?.includes(SOFTPHONE_FEATURE_ID),\n );\n\n function exportFormState() {\n const excluded = [\"softphone\"];\n\n if (!unref(softphoneEnabled)) {\n excluded.push(\"address\", \"city\", \"state\", \"zip\", \"country\");\n }\n\n return omit(formState.value, excluded);\n }\n\n function updateSnapshot() {\n formStateSnapshot.value = cloneDeep(formState.value);\n }\n\n return {\n formState,\n updateSnapshot,\n hasChanges,\n exportFormState,\n softphoneEnabled,\n };\n});\n\n// Data loading functions\nasync function getCalendars() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/calendars\"));\n\n if (!error) return data.data.map(({ id, label }) => ({ value: id, label }));\n\n console.error(error);\n throw new Error(\"Error loading calendars\");\n}\n\nasync function getCrmServices() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/crm-services\"));\n if (!error) return Object.values(data.data);\n\n console.error(error);\n throw new Error(\"Error loading CRM services\");\n}\n\nasync function getPartners() {\n const { error, data } = await tryCatch(\n axios.get(\"/api/v1/kiosk/partners\"),\n );\n if (!error) return data.data.data;\n\n console.error(error);\n throw new Error(\"Error loading partners\");\n}\n\nasync function fetchUsersData(teamId) {\n const { data, status } = await axios.get(\n `/api/v1/kiosk/organizations/${teamId}/users`,\n );\n\n if (status === 200) {\n return data;\n } else {\n throw new Error(\"Error in fetching users data\");\n }\n}\n</script>\n<script setup>\nimport { computed, ref, reactive, watch, unref } from \"vue\";\nimport axios from \"axios\";\nimport { cloneDeep, isEqual, omit } from \"lodash-es\";\nimport { modalDiscardGuard, toSelfProvidingHook, tryCatch } from \"@/utils\";\nimport useAppForm, {\n SilentFormError,\n} from \"@/components/shared/AppFormElements/useAppForm\";\nimport AppForm from \"@/components/shared/AppFormElements/AppForm.vue\";\nimport AppFormField from \"@/components/shared/AppFormElements/AppFormField.vue\";\nimport useAsyncData from \"@/composables/useAsyncData\";\nimport EditTeamAddressFields from \"./EditTeamAddressFields.vue\";\nimport AppDrawerModal from \"@/components/shared/modals/AppDrawerModal.vue\";\nimport { useDrawerModal } from \"@/composables/useDrawerModal\";\nimport { promptModal } from \"jenesius-vue-modal\";\nimport ChangeOwnerConfirmModal from \"@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue\";\nimport EventBus from \"@/utils/event-bus\";\nimport { getFeaturesData } from \"./features\";\nimport FeaturesGroup from \"./FeaturesGroup.vue\";\nimport FeaturesList from \"./FeaturesList.vue\";\nimport { ErrorMessage, useField } from \"vee-validate\";\nimport AppButton from \"@/components/shared/Buttons/AppButton.vue\";\nimport { useBrandedI18n } from \"@/composables/useBrandedI18n\";\n\n// Define props\nconst props = defineProps({\n data: {\n type: Object,\n required: true,\n },\n teamId: String,\n});\n\nconst { tb } = useBrandedI18n();\n\n// Branded i18n computed ref\nconst jiminnyVoiceLabel = tb(\"kiosk.edit-team.jiminny-voice--whitelabel\");\n\nconst flags = reactive({\n teamCreated: computed(() => !!props.data.id),\n ownerCreated: computed(() => !!props.data.owner_id),\n billingDisabled: computed(\n () =>\n !!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),\n ),\n});\n\n// Setup form\nconst form = useAppForm({\n onSubmit,\n toastSuccess: flags.teamCreated\n ? \"Account updated successfully!\"\n : \"Account created successfully!\",\n});\n\n// Setup form state with initial values\nconst {\n formState,\n hasChanges,\n updateSnapshot,\n exportFormState,\n softphoneEnabled,\n} = useEditTeamForm(props.data);\n\n// Load required data\nconst formData = reactive({\n calendarOptions: useAsyncData(getCalendars, { showError: true }),\n crmOptions: useAsyncData(getCrmServices, { showError: true }),\n features: useAsyncData(getFeaturesData, { showError: true }),\n partners: useAsyncData(getPartners, { showError: true }),\n admins: reactive(useAdminsList()),\n});\n\nconst { close } = useDrawerModal({ onClose });\n\nconst { tierModel, featuresGroups } = useFeaturesManager();\n\nconst { requireSyncPeriod } = useRequireSyncPeriod();\n\nconst drawerAttrs = computed(() => ({\n as: AppForm,\n title: flags.teamCreated ? \"Edit Organization\" : \"Setup Account\",\n headerButtons: [\n {\n type: \"submit\",\n label: \"Save\",\n variant: \"primary\",\n \"data-testid\": \"setup-trial-submit\",\n disabled: !unref(hasChanges),\n },\n ],\n contentAttrs: {\n busy: Object.values(formData).some(({ loading }) => loading),\n },\n}));\n\nfunction onClose() {\n return modalDiscardGuard({\n onSave: form.submitHandler,\n hasChanges: unref(hasChanges),\n });\n}\n\nasync function onSubmit() {\n const ownerChanged =\n flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;\n\n if (ownerChanged) {\n const confirmed = await promptModal(ChangeOwnerConfirmModal);\n if (!confirmed) throw new SilentFormError(\"Owner change not confirmed\");\n }\n\n const data = exportFormState();\n\n // create or update the team\n !flags.teamCreated\n ? await axios.post(\"/api/v1/settings/organizations\", data)\n : await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);\n\n EventBus.$emit(\"team.updated\");\n\n // update form snapshot\n updateSnapshot();\n close();\n}\n\nfunction useFeaturesManager() {\n const tierField = useField(\"tier_id\", \"required\", {\n initialValue: unref(formState).tier_id,\n });\n\n const tierModel = computed({\n get() {\n return unref(formState).tier_id;\n },\n set(tierId) {\n setTier(tierId);\n tierField.value.value = tierId;\n },\n });\n\n const featuresGroups = computed(() => {\n const { groups } = formData.features.data || {};\n\n if (!groups) return [];\n\n return [groups.TIER, groups[\"ADD_ON\"]].filter(Boolean).flat();\n });\n\n function setTier(tierId) {\n const selectedFeatures = new Set(unref(formState).features);\n const { features, tiers } = formData.features.data;\n\n // clear all tier features\n features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));\n\n const tier = tiers.find((tier) => tier.id === tierId);\n\n // select only selected tiers features\n [...tier.inherits, tierId]\n .map((tierId) => features.byTier[tierId] || [])\n .flat()\n .forEach((feature) => selectedFeatures.add(feature.id));\n\n Object.assign(unref(formState), {\n features: Array.from(selectedFeatures),\n tier_id: tierId,\n });\n }\n\n return { tierModel, setTier, featuresGroups };\n}\n\nfunction useRequireSyncPeriod() {\n // Computed property to check if opportunity sync period is required\n const requireSyncPeriod = computed(() => {\n return !!formData.crmOptions.data?.find(\n (item) => formState.value.crm === item.id,\n )?.requireInitialSyncPeriod;\n });\n\n watch(requireSyncPeriod, (required) => {\n formState.value.opportunity_sync_period = required\n ? formState.value.opportunity_sync_period ||\n DEFAULT_OPPORTUNITY_SYNC_PERIOD\n : null;\n });\n\n return { requireSyncPeriod };\n}\n\nfunction useAdminsList() {\n return useAsyncData(async () => {\n const data = await fetchUsersData(props.data.id);\n\n return data.filter((user) => user.roles?.some((e) => e.name == \"admin\"));\n });\n}\n</script>\n\n<style lang=\"less\" module>\n.fieldLabel:has(~ * :disabled) {\n opacity: 0.6;\n}\n.tearsGrid {\n display: grid;\n padding-top: 10px;\n gap: 10px;\n .sectionTitle {\n margin-top: 30px;\n display: flex;\n justify-content: space-between;\n }\n}\n.errorMessage {\n color: var(--color-danger);\n}\n.docsRef {\n font-size: 14px;\n}\n</style>","depth":4,"on_screen":true,"value":"<template>\n <AppDrawerModal v-bind=\"drawerAttrs\" #default=\"{ $style: drawerStyle }\">\n <div :class=\"drawerStyle.formGrid\">\n <div :class=\"drawerStyle.sectionTitle\">General</div>\n <!-- Name -->\n <AppFormField\n field-label=\"Company name\"\n v-model=\"formState.name\"\n :required=\"true\"\n name=\"name\"\n rules=\"required\"\n data-testid=\"setup-trial-name\"\n />\n\n <!-- Owner Email -->\n <AppFormField\n v-if=\"!flags.ownerCreated\"\n type=\"email\"\n field-label=\"Owner Email\"\n v-model=\"formState.owner_email\"\n :required=\"true\"\n name=\"owner_email\"\n rules=\"required|email\"\n data-testid=\"setup-trial-owner-email\"\n />\n <AppFormField\n v-else\n field-label=\"Owner\"\n name=\"owner_id\"\n :required=\"true\"\n rules=\"required\"\n v-model=\"formState.owner_id\"\n :options=\"formData.admins.data || []\"\n :loading=\"formData.admins.loading\"\n type=\"select\"\n option-label=\"name\"\n track-by=\"id\"\n data-testid=\"setup-trial-owner-email\"\n />\n\n <!-- CRM -->\n <AppFormField\n v-model=\"formState.crm\"\n name=\"crm\"\n type=\"select\"\n field-label=\"CRM\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.crmOptions.data || []\"\n track-by=\"id\"\n option-label=\"label\"\n :loading=\"formData.crmOptions.loading\"\n data-testid=\"setup-trial-crm\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->\n <AppFormField\n v-if=\"flags.teamCreated && formData.partners.data?.length > 1\"\n v-model=\"formState.partner_id\"\n name=\"partner_id\"\n type=\"select\"\n field-label=\"Partner\"\n :options=\"formData.partners.data || []\"\n track-by=\"id\"\n option-label=\"name\"\n :loading=\"formData.partners.loading\"\n data-testid=\"setup-trial-partner\"\n />\n\n <!-- Opportunity Sync Period -->\n <AppFormField\n :disabled=\"!requireSyncPeriod\"\n v-model=\"formState.opportunity_sync_period\"\n name=\"opportunity_sync_period\"\n type=\"select\"\n field-label=\"Import Opportunities Sync Period\"\n :required=\"requireSyncPeriod\"\n :rules=\"requireSyncPeriod ? 'required' : ''\"\n :options=\"syncPeriodOptions\"\n track-by=\"id\"\n option-label=\"label\"\n data-testid=\"setup-trial-sync-period\"\n />\n\n <!-- Calendar -->\n <AppFormField\n v-model=\"formState.calendar\"\n name=\"calendar\"\n type=\"radios\"\n ui=\"radios\"\n field-label=\"Calendar\"\n :required=\"true\"\n rules=\"required\"\n :options=\"formData.calendarOptions.data || []\"\n data-testid=\"setup-trial-calendar\"\n :disabled=\"flags.ownerCreated\"\n />\n\n <!-- Softphone -->\n <div>\n <div :class=\"[$style.fieldLabel, drawerStyle.fieldLabel]\">\n Softphone\n </div>\n <AppFormField\n v-model=\"formState.features\"\n name=\"softphone\"\n type=\"checkbox\"\n :value=\"SOFTPHONE_FEATURE_ID\"\n :field-label=\"jiminnyVoiceLabel\"\n data-testid=\"setup-trial-softphone\"\n />\n </div>\n\n <EditTeamAddressFields\n v-if=\"softphoneEnabled\"\n :disabled=\"flags.billingDisabled\"\n />\n\n </div>\n <div :class=\"$style.tearsGrid\">\n <div :class=\"$style.sectionTitle\">\n <div :class=\"drawerStyle.sectionTitle\">Tiers & Add-ons</div>\n <AppButton\n icon=\"question\"\n label=\"Tiers explained\"\n mods=\"seamless link primary\"\n href=\"https://jiminny.atlassian.net/wiki/external/OGRhNWI0NzJjZTc0NDg1YTg5MTU4NGYwZWU3NTc2OGM\"\n :class=\"$style.docsRef\"\n />\n </div>\n <ErrorMessage name=\"tier_id\">\n <div :class=\"$style.errorMessage\">Selecting tier is required</div>\n </ErrorMessage>\n <FeaturesGroup\n v-for=\"group in featuresGroups\"\n :key=\"group.tier?.id || group.type\"\n v-bind=\"{ group, tiers: formData.features.data.tiers }\"\n v-model:tier=\"tierModel\"\n v-model:features=\"formState.features\"\n />\n <template\n v-if=\"\n flags.teamCreated &&\n formData.features.data?.features.byType.DEV?.length\n \"\n >\n <div :class=\"[$style.sectionTitle, drawerStyle.sectionTitle]\">\n Technical Settings\n </div>\n <FeaturesList\n v-model=\"formState.features\"\n :features=\"formData.features.data.features.byType.DEV\"\n />\n </template>\n </div>\n </AppDrawerModal>\n</template>\n<script>\nconst SOFTPHONE_FEATURE_ID = \"DIALER\";\n\n// Options for opportunity sync period\nconst syncPeriodOptions = [\n { id: \"3m\", label: \"3 Months\" },\n { id: \"6m\", label: \"6 Months\" },\n { id: \"12m\", label: \"12 Months\" },\n];\n\nconst DEFAULT_OPPORTUNITY_SYNC_PERIOD = syncPeriodOptions[0].id;\n\nexport const useEditTeamForm = toSelfProvidingHook((data) => {\n const formState = ref({\n features: [],\n ...data,\n });\n\n const formStateSnapshot = ref();\n\n updateSnapshot();\n\n const hasChanges = computed(\n () => !isEqual(formState.value, formStateSnapshot.value),\n );\n\n const softphoneEnabled = computed(() =>\n unref(formState).features?.includes(SOFTPHONE_FEATURE_ID),\n );\n\n function exportFormState() {\n const excluded = [\"softphone\"];\n\n if (!unref(softphoneEnabled)) {\n excluded.push(\"address\", \"city\", \"state\", \"zip\", \"country\");\n }\n\n return omit(formState.value, excluded);\n }\n\n function updateSnapshot() {\n formStateSnapshot.value = cloneDeep(formState.value);\n }\n\n return {\n formState,\n updateSnapshot,\n hasChanges,\n exportFormState,\n softphoneEnabled,\n };\n});\n\n// Data loading functions\nasync function getCalendars() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/calendars\"));\n\n if (!error) return data.data.map(({ id, label }) => ({ value: id, label }));\n\n console.error(error);\n throw new Error(\"Error loading calendars\");\n}\n\nasync function getCrmServices() {\n const { error, data } = await tryCatch(axios.get(\"/api/v1/crm-services\"));\n if (!error) return Object.values(data.data);\n\n console.error(error);\n throw new Error(\"Error loading CRM services\");\n}\n\nasync function getPartners() {\n const { error, data } = await tryCatch(\n axios.get(\"/api/v1/kiosk/partners\"),\n );\n if (!error) return data.data.data;\n\n console.error(error);\n throw new Error(\"Error loading partners\");\n}\n\nasync function fetchUsersData(teamId) {\n const { data, status } = await axios.get(\n `/api/v1/kiosk/organizations/${teamId}/users`,\n );\n\n if (status === 200) {\n return data;\n } else {\n throw new Error(\"Error in fetching users data\");\n }\n}\n</script>\n<script setup>\nimport { computed, ref, reactive, watch, unref } from \"vue\";\nimport axios from \"axios\";\nimport { cloneDeep, isEqual, omit } from \"lodash-es\";\nimport { modalDiscardGuard, toSelfProvidingHook, tryCatch } from \"@/utils\";\nimport useAppForm, {\n SilentFormError,\n} from \"@/components/shared/AppFormElements/useAppForm\";\nimport AppForm from \"@/components/shared/AppFormElements/AppForm.vue\";\nimport AppFormField from \"@/components/shared/AppFormElements/AppFormField.vue\";\nimport useAsyncData from \"@/composables/useAsyncData\";\nimport EditTeamAddressFields from \"./EditTeamAddressFields.vue\";\nimport AppDrawerModal from \"@/components/shared/modals/AppDrawerModal.vue\";\nimport { useDrawerModal } from \"@/composables/useDrawerModal\";\nimport { promptModal } from \"jenesius-vue-modal\";\nimport ChangeOwnerConfirmModal from \"@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue\";\nimport EventBus from \"@/utils/event-bus\";\nimport { getFeaturesData } from \"./features\";\nimport FeaturesGroup from \"./FeaturesGroup.vue\";\nimport FeaturesList from \"./FeaturesList.vue\";\nimport { ErrorMessage, useField } from \"vee-validate\";\nimport AppButton from \"@/components/shared/Buttons/AppButton.vue\";\nimport { useBrandedI18n } from \"@/composables/useBrandedI18n\";\n\n// Define props\nconst props = defineProps({\n data: {\n type: Object,\n required: true,\n },\n teamId: String,\n});\n\nconst { tb } = useBrandedI18n();\n\n// Branded i18n computed ref\nconst jiminnyVoiceLabel = tb(\"kiosk.edit-team.jiminny-voice--whitelabel\");\n\nconst flags = reactive({\n teamCreated: computed(() => !!props.data.id),\n ownerCreated: computed(() => !!props.data.owner_id),\n billingDisabled: computed(\n () =>\n !!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),\n ),\n});\n\n// Setup form\nconst form = useAppForm({\n onSubmit,\n toastSuccess: flags.teamCreated\n ? \"Account updated successfully!\"\n : \"Account created successfully!\",\n});\n\n// Setup form state with initial values\nconst {\n formState,\n hasChanges,\n updateSnapshot,\n exportFormState,\n softphoneEnabled,\n} = useEditTeamForm(props.data);\n\n// Load required data\nconst formData = reactive({\n calendarOptions: useAsyncData(getCalendars, { showError: true }),\n crmOptions: useAsyncData(getCrmServices, { showError: true }),\n features: useAsyncData(getFeaturesData, { showError: true }),\n partners: useAsyncData(getPartners, { showError: true }),\n admins: reactive(useAdminsList()),\n});\n\nconst { close } = useDrawerModal({ onClose });\n\nconst { tierModel, featuresGroups } = useFeaturesManager();\n\nconst { requireSyncPeriod } = useRequireSyncPeriod();\n\nconst drawerAttrs = computed(() => ({\n as: AppForm,\n title: flags.teamCreated ? \"Edit Organization\" : \"Setup Account\",\n headerButtons: [\n {\n type: \"submit\",\n label: \"Save\",\n variant: \"primary\",\n \"data-testid\": \"setup-trial-submit\",\n disabled: !unref(hasChanges),\n },\n ],\n contentAttrs: {\n busy: Object.values(formData).some(({ loading }) => loading),\n },\n}));\n\nfunction onClose() {\n return modalDiscardGuard({\n onSave: form.submitHandler,\n hasChanges: unref(hasChanges),\n });\n}\n\nasync function onSubmit() {\n const ownerChanged =\n flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;\n\n if (ownerChanged) {\n const confirmed = await promptModal(ChangeOwnerConfirmModal);\n if (!confirmed) throw new SilentFormError(\"Owner change not confirmed\");\n }\n\n const data = exportFormState();\n\n // create or update the team\n !flags.teamCreated\n ? await axios.post(\"/api/v1/settings/organizations\", data)\n : await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);\n\n EventBus.$emit(\"team.updated\");\n\n // update form snapshot\n updateSnapshot();\n close();\n}\n\nfunction useFeaturesManager() {\n const tierField = useField(\"tier_id\", \"required\", {\n initialValue: unref(formState).tier_id,\n });\n\n const tierModel = computed({\n get() {\n return unref(formState).tier_id;\n },\n set(tierId) {\n setTier(tierId);\n tierField.value.value = tierId;\n },\n });\n\n const featuresGroups = computed(() => {\n const { groups } = formData.features.data || {};\n\n if (!groups) return [];\n\n return [groups.TIER, groups[\"ADD_ON\"]].filter(Boolean).flat();\n });\n\n function setTier(tierId) {\n const selectedFeatures = new Set(unref(formState).features);\n const { features, tiers } = formData.features.data;\n\n // clear all tier features\n features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));\n\n const tier = tiers.find((tier) => tier.id === tierId);\n\n // select only selected tiers features\n [...tier.inherits, tierId]\n .map((tierId) => features.byTier[tierId] || [])\n .flat()\n .forEach((feature) => selectedFeatures.add(feature.id));\n\n Object.assign(unref(formState), {\n features: Array.from(selectedFeatures),\n tier_id: tierId,\n });\n }\n\n return { tierModel, setTier, featuresGroups };\n}\n\nfunction useRequireSyncPeriod() {\n // Computed property to check if opportunity sync period is required\n const requireSyncPeriod = computed(() => {\n return !!formData.crmOptions.data?.find(\n (item) => formState.value.crm === item.id,\n )?.requireInitialSyncPeriod;\n });\n\n watch(requireSyncPeriod, (required) => {\n formState.value.opportunity_sync_period = required\n ? formState.value.opportunity_sync_period ||\n DEFAULT_OPPORTUNITY_SYNC_PERIOD\n : null;\n });\n\n return { requireSyncPeriod };\n}\n\nfunction useAdminsList() {\n return useAsyncData(async () => {\n const data = await fetchUsersData(props.data.id);\n\n return data.filter((user) => user.roles?.some((e) => e.name == \"admin\"));\n });\n}\n</script>\n\n<style lang=\"less\" module>\n.fieldLabel:has(~ * :disabled) {\n opacity: 0.6;\n}\n.tearsGrid {\n display: grid;\n padding-top: 10px;\n gap: 10px;\n .sectionTitle {\n margin-top: 30px;\n display: flex;\n justify-content: space-between;\n }\n}\n.errorMessage {\n color: var(--color-danger);\n}\n.docsRef {\n font-size: 14px;\n}\n</style>","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.02111111},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"51","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.02013889,"height":0.02111111},"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.02111111},"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.025555555},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.014583333,"height":0.025555555},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Console\\Commands\\Crm;\n\nuse Carbon\\Carbon;\nuse Exception;\nuse Illuminate\\Console\\Command;\nuse Jiminny\\Component\\Encryption\\EncryptedTokenManager;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Models\\User;\nuse Pipedrive\\versions\\v2\\Api\\ActivitiesApi;\nuse Pipedrive\\versions\\v2\\Api\\ActivityFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\DealFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\DealsApi;\nuse Pipedrive\\versions\\v2\\Api\\PersonFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\PersonsApi;\nuse Pipedrive\\versions\\v2\\Configuration;\n\nclass TestPipedriveOfficialSdkCommand extends Command\n{\n protected $signature = 'jiminny:test-pipedrive-official-sdk {teamId}';\n\n protected $description = 'Test official Pipedrive SDK (pipedrive/pipedrive) with existing OAuth tokens';\n\n private array $results = [];\n\n private EncryptedTokenManager $tokenManager;\n\n public function __construct(EncryptedTokenManager $tokenManager)\n {\n parent::__construct();\n $this->tokenManager = $tokenManager;\n }\n\n public function handle(): int\n {\n $teamId = (int) $this->argument('teamId');\n\n $this->info(\"Starting Pipedrive Official SDK POC for Team ID: {$teamId}\");\n $this->newLine();\n\n try {\n $this->runTests($teamId);\n } catch (Exception $e) {\n $this->error(\"POC failed with error: {$e->getMessage()}\");\n $this->error($e->getTraceAsString());\n\n return 1;\n }\n\n $this->displayResults();\n\n return 0;\n }\n\n private function runTests(int $teamId): void\n {\n $team = Team::find($teamId);\n if (! $team) {\n throw new Exception(\"Team with ID {$teamId} not found\");\n }\n\n $socialAccount = SocialAccount::where('provider', SocialAccount::PROVIDER_PIPEDRIVE)\n ->whereHas('sociable', function ($query) use ($team) {\n $query->where('team_id', $team->id);\n })\n ->orderByDesc('expires') // Get the most recently expiring token\n ->first();\n\n if (! $socialAccount) {\n throw new Exception(\"No Pipedrive social account found for team {$teamId}\");\n }\n\n $this->info(\"Found Pipedrive account for team: {$team->name}\");\n $this->newLine();\n\n // Test 1: OAuth Initialization\n $this->testOAuthInitialization($socialAccount);\n\n // Test 2: Basic CRUD Operations\n $this->testBasicCrudOperations($socialAccount);\n\n // Test 3: Field Metadata\n $this->testFieldMetadata($socialAccount);\n\n // Test 4: v2 API Support\n $this->testV2ApiSupport($socialAccount);\n\n // Test 5: Error Handling\n $this->testErrorHandling($socialAccount);\n }\n\n private function testOAuthInitialization(SocialAccount $socialAccount): void\n {\n $this->info('Test 1: OAuth Initialization');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n $client = new DealsApi(null, $config);\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('OAuth Initialization', true, \"Client initialized successfully in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('OAuth Initialization', false, $e->getMessage(), $elapsed);\n }\n\n $this->newLine();\n }\n\n private function testBasicCrudOperations(SocialAccount $socialAccount): void\n {\n $this->info('Test 2: Basic CRUD Operations');\n\n try {\n // Get the raw token from database\n $rawDbToken = $socialAccount->getProviderUserToken();\n $this->info(\"DB token (length: \" . strlen($rawDbToken) . \")\");\n $this->info(\"DB token preview: \" . substr($rawDbToken, 0, 20) . \"...\");\n\n // Check token expiry\n $expires = $socialAccount->expires;\n $this->info(\"Token expires at: \" . ($expires ? Carbon::createFromTimestamp($expires)->toDateTimeString() : 'null'));\n $this->info(\"Token is expired: \" . ($expires && $expires < time() ? 'YES' : 'NO'));\n\n // Test with the DB token directly\n $this->info(\"\\n--- Testing with DB token ---\");\n $config = new Configuration();\n $config->setAccessToken($rawDbToken);\n\n // Test 2a: Get Deals Summary\n $this->testGetDeals($config);\n\n // Test 2b: Get Persons\n $this->testGetPersons($config);\n\n // Test 2c: Get Activities\n $this->testGetActivities($config);\n } catch (Exception $e) {\n $this->recordResult('Basic CRUD Operations', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testCurrentSystemApproach(SocialAccount $socialAccount): void\n {\n $startTime = microtime(true);\n\n try {\n // Simulate how current system makes requests\n $token = $socialAccount->getProviderUserToken();\n $url = 'https://api.pipedrive.com/api/v2/deals';\n\n $headers = [\n 'Authorization' => 'Bearer ' . $token,\n 'Accept' => 'application/json',\n ];\n\n $client = new \\GuzzleHttp\\Client();\n $response = $client->get($url, [\n 'headers' => $headers,\n 'timeout' => 30,\n ]);\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $statusCode = $response->getStatusCode();\n $this->recordResult('Current System v2 API', $statusCode === 200, \"Status: {$statusCode} in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Current System v2 API', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetDeals(Configuration $config): void\n {\n $this->info('Test 2a: Get Deals');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new DealsApi(null, $config);\n // v2 SDK might have different method names\n // Try common v2 method names\n try {\n $result = $apiInstance->getDeals(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals', true, \"Retrieved deals in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method\n $result = $apiInstance->getDealsSummary();\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals Summary', true, \"Retrieved deals summary in {$elapsed}ms\", $elapsed);\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetPersons(Configuration $config): void\n {\n $this->info('Test 2b: Get Persons');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new PersonsApi(null, $config);\n // v2 SDK might have different method names\n try {\n $result = $apiInstance->getPersons(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', true, \"Retrieved persons in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method names\n try {\n $result = $apiInstance->getAllPersons(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', true, \"Retrieved persons in {$elapsed}ms\", $elapsed);\n } catch (Exception $e2) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', false, \"Method not found: {$e->getMessage()}\", $elapsed);\n }\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetActivities(Configuration $config): void\n {\n $this->info('Test 2c: Get Activities');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new ActivitiesApi(null, $config);\n // v2 SDK might have different method names\n try {\n $result = $apiInstance->getActivities(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', true, \"Retrieved activities in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method names\n try {\n $result = $apiInstance->getAllActivities(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', true, \"Retrieved activities in {$elapsed}ms\", $elapsed);\n } catch (Exception $e2) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', false, \"Method not found: {$e->getMessage()}\", $elapsed);\n }\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testFieldMetadata(SocialAccount $socialAccount): void\n {\n $this->info('Test 3: Field Metadata');\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n // Test 3a: Get Deal Fields\n $this->testGetDealFields($config);\n\n // Test 3b: Get Person Fields\n $this->testGetPersonFields($config);\n\n // Test 3c: Get Activity Fields\n $this->testGetActivityFields($config);\n } catch (Exception $e) {\n $this->recordResult('Field Metadata', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testGetDealFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new DealFieldsApi(null, $config);\n $result = $apiInstance->getDealFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Deal Fields', true, \"Retrieved {$count} deal fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deal Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetPersonFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new PersonFieldsApi(null, $config);\n $result = $apiInstance->getPersonFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Person Fields', true, \"Retrieved {$count} person fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Person Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetActivityFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new ActivityFieldsApi(null, $config);\n $result = $apiInstance->getActivityFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Activity Fields', true, \"Retrieved {$count} activity fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activity Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testV2ApiSupport(SocialAccount $socialAccount): void\n {\n $this->info('Test 4: v2 API Support (Cursor-based Pagination)');\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n $startTime = microtime(true);\n\n // Test v2 deals endpoint with cursor pagination\n // Note: The official SDK may or may not have v2 API support\n // This test will determine if v2 is available\n try {\n $apiInstance = new DealsApi(null, $config);\n $updatedSince = Carbon::now()->subDays(30)->toRfc3339String();\n $result = $apiInstance->getDealsSummary();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n\n // Check if response has cursor information (v2 indicator)\n // The response object doesn't have getAdditionalData method\n // Just test if the call works - v2 API support is limited in official SDK v1\n $this->recordResult('v2 API Support', false, \"v1 API works but v2 cursor pagination not available in official SDK v1. Retrieved summary in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('v2 API Support', false, $e->getMessage(), $elapsed);\n }\n } catch (Exception $e) {\n $this->recordResult('v2 API Support', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testErrorHandling(SocialAccount $socialAccount): void\n {\n $this->info('Test 5: Error Handling');\n\n try {\n // Test 5a: Invalid Token\n $this->testInvalidToken();\n\n // Test 5b: Non-existent Resource\n $this->testNonExistentResource($socialAccount);\n } catch (Exception $e) {\n $this->recordResult('Error Handling', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testInvalidToken(): void\n {\n $this->info('Test 5a: Invalid Token');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken('invalid_token');\n $client = new DealsApi(null, $config);\n\n $client->getDealsSummary();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Invalid Token Error', false, \"Expected error but request succeeded in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Invalid Token Error', true, \"Correctly threw exception: {$e->getMessage()} in {$elapsed}ms\", $elapsed);\n }\n }\n\n private function testNonExistentResource(SocialAccount $socialAccount): void\n {\n $this->info('Test 5b: Non-existent Resource');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n $client = new DealsApi(null, $config);\n\n // Try to get a deal with a very high ID that likely doesn't exist\n // Official SDK has getDealsSummary which works without specific ID\n // Instead, let's test with an invalid field ID\n try {\n $fieldClient = new DealFieldsApi(null, $config);\n $fieldClient->getDealField(999999999); // Very high ID that likely doesn't exist\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', false, \"Expected error but request succeeded in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', true, \"Correctly threw exception: {$e->getMessage()} in {$elapsed}ms\", $elapsed);\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function recordResult(string $testName, bool $success, string $message, float $elapsed): void\n {\n $this->results[] = [\n 'test' => $testName,\n 'success' => $success,\n 'message' => $message,\n 'elapsed' => $elapsed,\n ];\n\n $status = $success ? '✅ PASS' : '❌ FAIL';\n $this->line(\" {$status} - {$testName}: {$message}\");\n }\n\n private function displayResults(): void\n {\n $this->newLine();\n $this->info('=== POC Test Results Summary ===');\n $this->newLine();\n\n $total = count($this->results);\n $passed = count(array_filter($this->results, fn ($r) => $r['success']));\n $failed = $total - $passed;\n\n $this->line(\"Total Tests: {$total}\");\n $this->line(\"Passed: {$passed}\");\n $this->line(\"Failed: {$failed}\");\n $this->newLine();\n\n $totalTime = array_sum(array_column($this->results, 'elapsed'));\n $this->line(\"Total Execution Time: {$totalTime}ms\");\n $this->newLine();\n\n if ($failed > 0) {\n $this->warn('Failed Tests:');\n foreach ($this->results as $result) {\n if (! $result['success']) {\n $this->line(\" - {$result['test']}: {$result['message']}\");\n }\n }\n $this->newLine();\n }\n\n $this->info('=== Detailed Results ===');\n foreach ($this->results as $result) {\n $status = $result['success'] ? '✅' : '❌';\n $this->line(\"{$status} {$result['test']} ({$result['elapsed']}ms): {$result['message']}\");\n }\n\n $this->newLine();\n $this->info('=== Recommendations ===');\n\n if ($passed === $total) {\n $this->info('✅ All tests passed! The official SDK is viable for migration.');\n $this->info('Next steps: Proceed with full migration planning.');\n } else {\n $this->warn('⚠️ Some tests failed. Review the failures above before proceeding.');\n $this->warn('Consider hybrid approach or investigate alternatives if critical operations fail.');\n }\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Console\\Commands\\Crm;\n\nuse Carbon\\Carbon;\nuse Exception;\nuse Illuminate\\Console\\Command;\nuse Jiminny\\Component\\Encryption\\EncryptedTokenManager;\nuse Jiminny\\Models\\SocialAccount;\nuse Jiminny\\Models\\Team;\nuse Jiminny\\Models\\User;\nuse Pipedrive\\versions\\v2\\Api\\ActivitiesApi;\nuse Pipedrive\\versions\\v2\\Api\\ActivityFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\DealFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\DealsApi;\nuse Pipedrive\\versions\\v2\\Api\\PersonFieldsApi;\nuse Pipedrive\\versions\\v2\\Api\\PersonsApi;\nuse Pipedrive\\versions\\v2\\Configuration;\n\nclass TestPipedriveOfficialSdkCommand extends Command\n{\n protected $signature = 'jiminny:test-pipedrive-official-sdk {teamId}';\n\n protected $description = 'Test official Pipedrive SDK (pipedrive/pipedrive) with existing OAuth tokens';\n\n private array $results = [];\n\n private EncryptedTokenManager $tokenManager;\n\n public function __construct(EncryptedTokenManager $tokenManager)\n {\n parent::__construct();\n $this->tokenManager = $tokenManager;\n }\n\n public function handle(): int\n {\n $teamId = (int) $this->argument('teamId');\n\n $this->info(\"Starting Pipedrive Official SDK POC for Team ID: {$teamId}\");\n $this->newLine();\n\n try {\n $this->runTests($teamId);\n } catch (Exception $e) {\n $this->error(\"POC failed with error: {$e->getMessage()}\");\n $this->error($e->getTraceAsString());\n\n return 1;\n }\n\n $this->displayResults();\n\n return 0;\n }\n\n private function runTests(int $teamId): void\n {\n $team = Team::find($teamId);\n if (! $team) {\n throw new Exception(\"Team with ID {$teamId} not found\");\n }\n\n $socialAccount = SocialAccount::where('provider', SocialAccount::PROVIDER_PIPEDRIVE)\n ->whereHas('sociable', function ($query) use ($team) {\n $query->where('team_id', $team->id);\n })\n ->orderByDesc('expires') // Get the most recently expiring token\n ->first();\n\n if (! $socialAccount) {\n throw new Exception(\"No Pipedrive social account found for team {$teamId}\");\n }\n\n $this->info(\"Found Pipedrive account for team: {$team->name}\");\n $this->newLine();\n\n // Test 1: OAuth Initialization\n $this->testOAuthInitialization($socialAccount);\n\n // Test 2: Basic CRUD Operations\n $this->testBasicCrudOperations($socialAccount);\n\n // Test 3: Field Metadata\n $this->testFieldMetadata($socialAccount);\n\n // Test 4: v2 API Support\n $this->testV2ApiSupport($socialAccount);\n\n // Test 5: Error Handling\n $this->testErrorHandling($socialAccount);\n }\n\n private function testOAuthInitialization(SocialAccount $socialAccount): void\n {\n $this->info('Test 1: OAuth Initialization');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n $client = new DealsApi(null, $config);\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('OAuth Initialization', true, \"Client initialized successfully in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('OAuth Initialization', false, $e->getMessage(), $elapsed);\n }\n\n $this->newLine();\n }\n\n private function testBasicCrudOperations(SocialAccount $socialAccount): void\n {\n $this->info('Test 2: Basic CRUD Operations');\n\n try {\n // Get the raw token from database\n $rawDbToken = $socialAccount->getProviderUserToken();\n $this->info(\"DB token (length: \" . strlen($rawDbToken) . \")\");\n $this->info(\"DB token preview: \" . substr($rawDbToken, 0, 20) . \"...\");\n\n // Check token expiry\n $expires = $socialAccount->expires;\n $this->info(\"Token expires at: \" . ($expires ? Carbon::createFromTimestamp($expires)->toDateTimeString() : 'null'));\n $this->info(\"Token is expired: \" . ($expires && $expires < time() ? 'YES' : 'NO'));\n\n // Test with the DB token directly\n $this->info(\"\\n--- Testing with DB token ---\");\n $config = new Configuration();\n $config->setAccessToken($rawDbToken);\n\n // Test 2a: Get Deals Summary\n $this->testGetDeals($config);\n\n // Test 2b: Get Persons\n $this->testGetPersons($config);\n\n // Test 2c: Get Activities\n $this->testGetActivities($config);\n } catch (Exception $e) {\n $this->recordResult('Basic CRUD Operations', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testCurrentSystemApproach(SocialAccount $socialAccount): void\n {\n $startTime = microtime(true);\n\n try {\n // Simulate how current system makes requests\n $token = $socialAccount->getProviderUserToken();\n $url = 'https://api.pipedrive.com/api/v2/deals';\n\n $headers = [\n 'Authorization' => 'Bearer ' . $token,\n 'Accept' => 'application/json',\n ];\n\n $client = new \\GuzzleHttp\\Client();\n $response = $client->get($url, [\n 'headers' => $headers,\n 'timeout' => 30,\n ]);\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $statusCode = $response->getStatusCode();\n $this->recordResult('Current System v2 API', $statusCode === 200, \"Status: {$statusCode} in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Current System v2 API', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetDeals(Configuration $config): void\n {\n $this->info('Test 2a: Get Deals');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new DealsApi(null, $config);\n // v2 SDK might have different method names\n // Try common v2 method names\n try {\n $result = $apiInstance->getDeals(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals', true, \"Retrieved deals in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method\n $result = $apiInstance->getDealsSummary();\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals Summary', true, \"Retrieved deals summary in {$elapsed}ms\", $elapsed);\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deals', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetPersons(Configuration $config): void\n {\n $this->info('Test 2b: Get Persons');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new PersonsApi(null, $config);\n // v2 SDK might have different method names\n try {\n $result = $apiInstance->getPersons(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', true, \"Retrieved persons in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method names\n try {\n $result = $apiInstance->getAllPersons(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', true, \"Retrieved persons in {$elapsed}ms\", $elapsed);\n } catch (Exception $e2) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', false, \"Method not found: {$e->getMessage()}\", $elapsed);\n }\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Persons', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetActivities(Configuration $config): void\n {\n $this->info('Test 2c: Get Activities');\n $startTime = microtime(true);\n\n try {\n $apiInstance = new ActivitiesApi(null, $config);\n // v2 SDK might have different method names\n try {\n $result = $apiInstance->getActivities(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', true, \"Retrieved activities in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n // Try alternative method names\n try {\n $result = $apiInstance->getAllActivities(['limit' => 10]);\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', true, \"Retrieved activities in {$elapsed}ms\", $elapsed);\n } catch (Exception $e2) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', false, \"Method not found: {$e->getMessage()}\", $elapsed);\n }\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activities', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testFieldMetadata(SocialAccount $socialAccount): void\n {\n $this->info('Test 3: Field Metadata');\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n // Test 3a: Get Deal Fields\n $this->testGetDealFields($config);\n\n // Test 3b: Get Person Fields\n $this->testGetPersonFields($config);\n\n // Test 3c: Get Activity Fields\n $this->testGetActivityFields($config);\n } catch (Exception $e) {\n $this->recordResult('Field Metadata', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testGetDealFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new DealFieldsApi(null, $config);\n $result = $apiInstance->getDealFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Deal Fields', true, \"Retrieved {$count} deal fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Deal Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetPersonFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new PersonFieldsApi(null, $config);\n $result = $apiInstance->getPersonFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Person Fields', true, \"Retrieved {$count} person fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Person Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testGetActivityFields(Configuration $config): void\n {\n $startTime = microtime(true);\n\n try {\n $apiInstance = new ActivityFieldsApi(null, $config);\n $result = $apiInstance->getActivityFields();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $count = $result->getData() ? count($result->getData()) : 0;\n $this->recordResult('Get Activity Fields', true, \"Retrieved {$count} activity fields in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Get Activity Fields', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function testV2ApiSupport(SocialAccount $socialAccount): void\n {\n $this->info('Test 4: v2 API Support (Cursor-based Pagination)');\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n\n $startTime = microtime(true);\n\n // Test v2 deals endpoint with cursor pagination\n // Note: The official SDK may or may not have v2 API support\n // This test will determine if v2 is available\n try {\n $apiInstance = new DealsApi(null, $config);\n $updatedSince = Carbon::now()->subDays(30)->toRfc3339String();\n $result = $apiInstance->getDealsSummary();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n\n // Check if response has cursor information (v2 indicator)\n // The response object doesn't have getAdditionalData method\n // Just test if the call works - v2 API support is limited in official SDK v1\n $this->recordResult('v2 API Support', false, \"v1 API works but v2 cursor pagination not available in official SDK v1. Retrieved summary in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('v2 API Support', false, $e->getMessage(), $elapsed);\n }\n } catch (Exception $e) {\n $this->recordResult('v2 API Support', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testErrorHandling(SocialAccount $socialAccount): void\n {\n $this->info('Test 5: Error Handling');\n\n try {\n // Test 5a: Invalid Token\n $this->testInvalidToken();\n\n // Test 5b: Non-existent Resource\n $this->testNonExistentResource($socialAccount);\n } catch (Exception $e) {\n $this->recordResult('Error Handling', false, $e->getMessage(), 0);\n }\n\n $this->newLine();\n }\n\n private function testInvalidToken(): void\n {\n $this->info('Test 5a: Invalid Token');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken('invalid_token');\n $client = new DealsApi(null, $config);\n\n $client->getDealsSummary();\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Invalid Token Error', false, \"Expected error but request succeeded in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Invalid Token Error', true, \"Correctly threw exception: {$e->getMessage()} in {$elapsed}ms\", $elapsed);\n }\n }\n\n private function testNonExistentResource(SocialAccount $socialAccount): void\n {\n $this->info('Test 5b: Non-existent Resource');\n $startTime = microtime(true);\n\n try {\n $config = new Configuration();\n $config->setAccessToken($socialAccount->provider_user_token);\n $client = new DealsApi(null, $config);\n\n // Try to get a deal with a very high ID that likely doesn't exist\n // Official SDK has getDealsSummary which works without specific ID\n // Instead, let's test with an invalid field ID\n try {\n $fieldClient = new DealFieldsApi(null, $config);\n $fieldClient->getDealField(999999999); // Very high ID that likely doesn't exist\n\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', false, \"Expected error but request succeeded in {$elapsed}ms\", $elapsed);\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', true, \"Correctly threw exception: {$e->getMessage()} in {$elapsed}ms\", $elapsed);\n }\n } catch (Exception $e) {\n $elapsed = round((microtime(true) - $startTime) * 1000, 2);\n $this->recordResult('Non-existent Resource Error', false, $e->getMessage(), $elapsed);\n }\n }\n\n private function recordResult(string $testName, bool $success, string $message, float $elapsed): void\n {\n $this->results[] = [\n 'test' => $testName,\n 'success' => $success,\n 'message' => $message,\n 'elapsed' => $elapsed,\n ];\n\n $status = $success ? '✅ PASS' : '❌ FAIL';\n $this->line(\" {$status} - {$testName}: {$message}\");\n }\n\n private function displayResults(): void\n {\n $this->newLine();\n $this->info('=== POC Test Results Summary ===');\n $this->newLine();\n\n $total = count($this->results);\n $passed = count(array_filter($this->results, fn ($r) => $r['success']));\n $failed = $total - $passed;\n\n $this->line(\"Total Tests: {$total}\");\n $this->line(\"Passed: {$passed}\");\n $this->line(\"Failed: {$failed}\");\n $this->newLine();\n\n $totalTime = array_sum(array_column($this->results, 'elapsed'));\n $this->line(\"Total Execution Time: {$totalTime}ms\");\n $this->newLine();\n\n if ($failed > 0) {\n $this->warn('Failed Tests:');\n foreach ($this->results as $result) {\n if (! $result['success']) {\n $this->line(\" - {$result['test']}: {$result['message']}\");\n }\n }\n $this->newLine();\n }\n\n $this->info('=== Detailed Results ===');\n foreach ($this->results as $result) {\n $status = $result['success'] ? '✅' : '❌';\n $this->line(\"{$status} {$result['test']} ({$result['elapsed']}ms): {$result['message']}\");\n }\n\n $this->newLine();\n $this->info('=== Recommendations ===');\n\n if ($passed === $total) {\n $this->info('✅ All tests passed! The official SDK is viable for migration.');\n $this->info('Next steps: Proceed with full migration planning.');\n } else {\n $this->warn('⚠️ Some tests failed. Review the failures above before proceeding.');\n $this->warn('Consider hybrid approach or investigate alternatives if critical operations fail.');\n }\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app, folder","depth":6,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".circleci, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".cursor, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".vscode, folder","depth":7,"on_screen":false,"role_description":"text"},{"role":"AXStaticText","text":".windsurf, folder","depth":7,"on_screen":false,"role_description":"text"}]...
|
-8582840444965857068
|
25694249123465860
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
pipedrive-sdk-poc, menu
S Project: faVsco.js, menu
pipedrive-sdk-poc, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
Analyzing…
<template>
<AppDrawerModal v-bind="drawerAttrs" #default="{ $style: drawerStyle }">
<div :class="drawerStyle.formGrid">
<div :class="drawerStyle.sectionTitle">General</div>
<!-- Name -->
<AppFormField
field-label="Company name"
v-model="formState.name"
:required="true"
name="name"
rules="required"
data-testid="setup-trial-name"
/>
<!-- Owner Email -->
<AppFormField
v-if="!flags.ownerCreated"
type="email"
field-label="Owner Email"
v-model="formState.owner_email"
:required="true"
name="owner_email"
rules="required|email"
data-testid="setup-trial-owner-email"
/>
<AppFormField
v-else
field-label="Owner"
name="owner_id"
:required="true"
rules="required"
v-model="formState.owner_id"
:options="formData.admins.data || []"
:loading="formData.admins.loading"
type="select"
option-label="name"
track-by="id"
data-testid="setup-trial-owner-email"
/>
<!-- CRM -->
<AppFormField
v-model="formState.crm"
name="crm"
type="select"
field-label="CRM"
:required="true"
rules="required"
:options="formData.crmOptions.data || []"
track-by="id"
option-label="label"
:loading="formData.crmOptions.loading"
data-testid="setup-trial-crm"
:disabled="flags.ownerCreated"
/>
<!-- Partner (only shown to default-partner kiosk users in edit mode who have access to multiple partners) -->
<AppFormField
v-if="flags.teamCreated && formData.partners.data?.length > 1"
v-model="formState.partner_id"
name="partner_id"
type="select"
field-label="Partner"
:options="formData.partners.data || []"
track-by="id"
option-label="name"
:loading="formData.partners.loading"
data-testid="setup-trial-partner"
/>
<!-- Opportunity Sync Period -->
<AppFormField
:disabled="!requireSyncPeriod"
v-model="formState.opportunity_sync_period"
name="opportunity_sync_period"
type="select"
field-label="Import Opportunities Sync Period"
:required="requireSyncPeriod"
:rules="requireSyncPeriod ? 'required' : ''"
:options="syncPeriodOptions"
track-by="id"
option-label="label"
data-testid="setup-trial-sync-period"
/>
<!-- Calendar -->
<AppFormField
v-model="formState.calendar"
name="calendar"
type="radios"
ui="radios"
field-label="Calendar"
:required="true"
rules="required"
:options="formData.calendarOptions.data || []"
data-testid="setup-trial-calendar"
:disabled="flags.ownerCreated"
/>
<!-- Softphone -->
<div>
<div :class="[$style.fieldLabel, drawerStyle.fieldLabel]">
Softphone
</div>
<AppFormField
v-model="formState.features"
name="softphone"
type="checkbox"
:value="SOFTPHONE_FEATURE_ID"
:field-label="jiminnyVoiceLabel"
data-testid="setup-trial-softphone"
/>
</div>
<EditTeamAddressFields
v-if="softphoneEnabled"
:disabled="flags.billingDisabled"
/>
</div>
<div :class="$style.tearsGrid">
<div :class="$style.sectionTitle">
<div :class="drawerStyle.sectionTitle">Tiers & Add-ons</div>
<AppButton
icon="question"
label="Tiers explained"
mods="seamless link primary"
href="[URL_WITH_CREDENTIALS]
import useAppForm, {
SilentFormError,
} from "@/components/shared/AppFormElements/useAppForm";
import AppForm from "@/components/shared/AppFormElements/AppForm.vue";
import AppFormField from "@/components/shared/AppFormElements/AppFormField.vue";
import useAsyncData from "@/composables/useAsyncData";
import EditTeamAddressFields from "./EditTeamAddressFields.vue";
import AppDrawerModal from "@/components/shared/modals/AppDrawerModal.vue";
import { useDrawerModal } from "@/composables/useDrawerModal";
import { promptModal } from "jenesius-vue-modal";
import ChangeOwnerConfirmModal from "@/components/Settings/OrgSettings/Members/ChangeOwnerConfirmModal.vue";
import EventBus from "@/utils/event-bus";
import { getFeaturesData } from "./features";
import FeaturesGroup from "./FeaturesGroup.vue";
import FeaturesList from "./FeaturesList.vue";
import { ErrorMessage, useField } from "vee-validate";
import AppButton from "@/components/shared/Buttons/AppButton.vue";
import { useBrandedI18n } from "@/composables/useBrandedI18n";
// Define props
const props = defineProps({
data: {
type: Object,
required: true,
},
teamId: String,
});
const { tb } = useBrandedI18n();
// Branded i18n computed ref
const jiminnyVoiceLabel = tb("kiosk.edit-team.jiminny-voice--whitelabel");
const flags = reactive({
teamCreated: computed(() => !!props.data.id),
ownerCreated: computed(() => !!props.data.owner_id),
billingDisabled: computed(
() =>
!!props.data.id && props.data?.features?.includes(SOFTPHONE_FEATURE_ID),
),
});
// Setup form
const form = useAppForm({
onSubmit,
toastSuccess: flags.teamCreated
? "Account updated successfully!"
: "Account created successfully!",
});
// Setup form state with initial values
const {
formState,
hasChanges,
updateSnapshot,
exportFormState,
softphoneEnabled,
} = useEditTeamForm(props.data);
// Load required data
const formData = reactive({
calendarOptions: useAsyncData(getCalendars, { showError: true }),
crmOptions: useAsyncData(getCrmServices, { showError: true }),
features: useAsyncData(getFeaturesData, { showError: true }),
partners: useAsyncData(getPartners, { showError: true }),
admins: reactive(useAdminsList()),
});
const { close } = useDrawerModal({ onClose });
const { tierModel, featuresGroups } = useFeaturesManager();
const { requireSyncPeriod } = useRequireSyncPeriod();
const drawerAttrs = computed(() => ({
as: AppForm,
title: flags.teamCreated ? "Edit Organization" : "Setup Account",
headerButtons: [
{
type: "submit",
label: "Save",
variant: "primary",
"data-testid": "setup-trial-submit",
disabled: !unref(hasChanges),
},
],
contentAttrs: {
busy: Object.values(formData).some(({ loading }) => loading),
},
}));
function onClose() {
return modalDiscardGuard({
onSave: form.submitHandler,
hasChanges: unref(hasChanges),
});
}
async function onSubmit() {
const ownerChanged =
flags.ownerCreated && formState.value.owner_id !== props.data.owner_id;
if (ownerChanged) {
const confirmed = await promptModal(ChangeOwnerConfirmModal);
if (!confirmed) throw new SilentFormError("Owner change not confirmed");
}
const data = exportFormState();
// create or update the team
!flags.teamCreated
? await axios.post("/api/v1/settings/organizations", data)
: await axios.put(`/api/v1/kiosk/organizations/${props.data.id}`, data);
EventBus.$emit("team.updated");
// update form snapshot
updateSnapshot();
close();
}
function useFeaturesManager() {
const tierField = useField("tier_id", "required", {
initialValue: unref(formState).tier_id,
});
const tierModel = computed({
get() {
return unref(formState).tier_id;
},
set(tierId) {
setTier(tierId);
tierField.value.value = tierId;
},
});
const featuresGroups = computed(() => {
const { groups } = formData.features.data || {};
if (!groups) return [];
return [groups.TIER, groups["ADD_ON"]].filter(Boolean).flat();
});
function setTier(tierId) {
const selectedFeatures = new Set(unref(formState).features);
const { features, tiers } = formData.features.data;
// clear all tier features
features.byType.TIER.forEach(({ id }) => selectedFeatures.delete(id));
const tier = tiers.find((tier) => tier.id === tierId);
// select only selected tiers features
[...tier.inherits, tierId]
.map((tierId) => features.byTier[tierId] || [])
.flat()
.forEach((feature) => selectedFeatures.add(feature.id));
Object.assign(unref(formState), {
features: Array.from(selectedFeatures),
tier_id: tierId,
});
}
return { tierModel, setTier, featuresGroups };
}
function useRequireSyncPeriod() {
// Computed property to check if opportunity sync period is required
const requireSyncPeriod = computed(() => {
return !!formData.crmOptions.data?.find(
(item) => formState.value.crm === item.id,
)?.requireInitialSyncPeriod;
});
watch(requireSyncPeriod, (required) => {
formState.value.opportunity_sync_period = required
? formState.value.opportunity_sync_period ||
DEFAULT_OPPORTUNITY_SYNC_PERIOD
: null;
});
return { requireSyncPeriod };
}
function useAdminsList() {
return useAsyncData(async () => {
const data = await fetchUsersData(props.data.id);
return data.filter((user) => user.roles?.some((e) => e.name == "admin"));
});
}
</script>
<style lang="less" module>
.fieldLabel:has(~ * :disabled) {
opacity: 0.6;
}
.tearsGrid {
display: grid;
padding-top: 10px;
gap: 10px;
.sectionTitle {
margin-top: 30px;
display: flex;
justify-content: space-between;
}
}
.errorMessage {
color: var(--color-danger);
}
.docsRef {
font-size: 14px;
}
</style>
Code changed:
Hide
Sync Changes
Hide This Notification
1
51
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Console\Commands\Crm;
use Carbon\Carbon;
use Exception;
use Illuminate\Console\Command;
use Jiminny\Component\Encryption\EncryptedTokenManager;
use Jiminny\Models\SocialAccount;
use Jiminny\Models\Team;
use Jiminny\Models\User;
use Pipedrive\versions\v2\Api\ActivitiesApi;
use Pipedrive\versions\v2\Api\ActivityFieldsApi;
use Pipedrive\versions\v2\Api\DealFieldsApi;
use Pipedrive\versions\v2\Api\DealsApi;
use Pipedrive\versions\v2\Api\PersonFieldsApi;
use Pipedrive\versions\v2\Api\PersonsApi;
use Pipedrive\versions\v2\Configuration;
class TestPipedriveOfficialSdkCommand extends Command
{
protected $signature = 'jiminny:test-pipedrive-official-sdk {teamId}';
protected $description = 'Test official Pipedrive SDK (pipedrive/pipedrive) with existing OAuth tokens';
private array $results = [];
private EncryptedTokenManager $tokenManager;
public function __construct(EncryptedTokenManager $tokenManager)
{
parent::__construct();
$this->tokenManager = $tokenManager;
}
public function handle(): int
{
$teamId = (int) $this->argument('teamId');
$this->info("Starting Pipedrive Official SDK POC for Team ID: {$teamId}");
$this->newLine();
try {
$this->runTests($teamId);
} catch (Exception $e) {
$this->error("POC failed with error: {$e->getMessage()}");
$this->error($e->getTraceAsString());
return 1;
}
$this->displayResults();
return 0;
}
private function runTests(int $teamId): void
{
$team = Team::find($teamId);
if (! $team) {
throw new Exception("Team with ID {$teamId} not found");
}
$socialAccount = SocialAccount::where('provider', SocialAccount::PROVIDER_PIPEDRIVE)
->whereHas('sociable', function ($query) use ($team) {
$query->where('team_id', $team->id);
})
->orderByDesc('expires') // Get the most recently expiring token
->first();
if (! $socialAccount) {
throw new Exception("No Pipedrive social account found for team {$teamId}");
}
$this->info("Found Pipedrive account for team: {$team->name}");
$this->newLine();
// Test 1: OAuth Initialization
$this->testOAuthInitialization($socialAccount);
// Test 2: Basic CRUD Operations
$this->testBasicCrudOperations($socialAccount);
// Test 3: Field Metadata
$this->testFieldMetadata($socialAccount);
// Test 4: v2 API Support
$this->testV2ApiSupport($socialAccount);
// Test 5: Error Handling
$this->testErrorHandling($socialAccount);
}
private function testOAuthInitialization(SocialAccount $socialAccount): void
{
$this->info('Test 1: OAuth Initialization');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$client = new DealsApi(null, $config);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('OAuth Initialization', true, "Client initialized successfully in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('OAuth Initialization', false, $e->getMessage(), $elapsed);
}
$this->newLine();
}
private function testBasicCrudOperations(SocialAccount $socialAccount): void
{
$this->info('Test 2: Basic CRUD Operations');
try {
// Get the raw token from database
$rawDbToken = $socialAccount->getProviderUserToken();
$this->info("DB token (length: " . strlen($rawDbToken) . ")");
$this->info("DB token preview: " . substr($rawDbToken, 0, 20) . "...");
// Check token expiry
$expires = $socialAccount->expires;
$this->info("Token expires at: " . ($expires ? Carbon::createFromTimestamp($expires)->toDateTimeString() : 'null'));
$this->info("Token is expired: " . ($expires && $expires < time() ? 'YES' : 'NO'));
// Test with the DB token directly
$this->info("\n--- Testing with DB token ---");
$config = new Configuration();
$config->setAccessToken($rawDbToken);
// Test 2a: Get Deals Summary
$this->testGetDeals($config);
// Test 2b: Get Persons
$this->testGetPersons($config);
// Test 2c: Get Activities
$this->testGetActivities($config);
} catch (Exception $e) {
$this->recordResult('Basic CRUD Operations', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testCurrentSystemApproach(SocialAccount $socialAccount): void
{
$startTime = microtime(true);
try {
// Simulate how current system makes requests
$token = $socialAccount->getProviderUserToken();
$url = 'https://api.pipedrive.com/api/v2/deals';
$headers = [
'Authorization' => 'Bearer ' . $token,
'Accept' => 'application/json',
];
$client = new \GuzzleHttp\Client();
$response = $client->get($url, [
'headers' => $headers,
'timeout' => 30,
]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$statusCode = $response->getStatusCode();
$this->recordResult('Current System v2 API', $statusCode === 200, "Status: {$statusCode} in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Current System v2 API', false, $e->getMessage(), $elapsed);
}
}
private function testGetDeals(Configuration $config): void
{
$this->info('Test 2a: Get Deals');
$startTime = microtime(true);
try {
$apiInstance = new DealsApi(null, $config);
// v2 SDK might have different method names
// Try common v2 method names
try {
$result = $apiInstance->getDeals(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals', true, "Retrieved deals in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method
$result = $apiInstance->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals Summary', true, "Retrieved deals summary in {$elapsed}ms", $elapsed);
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deals', false, $e->getMessage(), $elapsed);
}
}
private function testGetPersons(Configuration $config): void
{
$this->info('Test 2b: Get Persons');
$startTime = microtime(true);
try {
$apiInstance = new PersonsApi(null, $config);
// v2 SDK might have different method names
try {
$result = $apiInstance->getPersons(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', true, "Retrieved persons in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method names
try {
$result = $apiInstance->getAllPersons(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', true, "Retrieved persons in {$elapsed}ms", $elapsed);
} catch (Exception $e2) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', false, "Method not found: {$e->getMessage()}", $elapsed);
}
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Persons', false, $e->getMessage(), $elapsed);
}
}
private function testGetActivities(Configuration $config): void
{
$this->info('Test 2c: Get Activities');
$startTime = microtime(true);
try {
$apiInstance = new ActivitiesApi(null, $config);
// v2 SDK might have different method names
try {
$result = $apiInstance->getActivities(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', true, "Retrieved activities in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
// Try alternative method names
try {
$result = $apiInstance->getAllActivities(['limit' => 10]);
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', true, "Retrieved activities in {$elapsed}ms", $elapsed);
} catch (Exception $e2) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', false, "Method not found: {$e->getMessage()}", $elapsed);
}
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activities', false, $e->getMessage(), $elapsed);
}
}
private function testFieldMetadata(SocialAccount $socialAccount): void
{
$this->info('Test 3: Field Metadata');
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
// Test 3a: Get Deal Fields
$this->testGetDealFields($config);
// Test 3b: Get Person Fields
$this->testGetPersonFields($config);
// Test 3c: Get Activity Fields
$this->testGetActivityFields($config);
} catch (Exception $e) {
$this->recordResult('Field Metadata', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testGetDealFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new DealFieldsApi(null, $config);
$result = $apiInstance->getDealFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Deal Fields', true, "Retrieved {$count} deal fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Deal Fields', false, $e->getMessage(), $elapsed);
}
}
private function testGetPersonFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new PersonFieldsApi(null, $config);
$result = $apiInstance->getPersonFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Person Fields', true, "Retrieved {$count} person fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Person Fields', false, $e->getMessage(), $elapsed);
}
}
private function testGetActivityFields(Configuration $config): void
{
$startTime = microtime(true);
try {
$apiInstance = new ActivityFieldsApi(null, $config);
$result = $apiInstance->getActivityFields();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$count = $result->getData() ? count($result->getData()) : 0;
$this->recordResult('Get Activity Fields', true, "Retrieved {$count} activity fields in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Get Activity Fields', false, $e->getMessage(), $elapsed);
}
}
private function testV2ApiSupport(SocialAccount $socialAccount): void
{
$this->info('Test 4: v2 API Support (Cursor-based Pagination)');
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$startTime = microtime(true);
// Test v2 deals endpoint with cursor pagination
// Note: The official SDK may or may not have v2 API support
// This test will determine if v2 is available
try {
$apiInstance = new DealsApi(null, $config);
$updatedSince = Carbon::now()->subDays(30)->toRfc3339String();
$result = $apiInstance->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
// Check if response has cursor information (v2 indicator)
// The response object doesn't have getAdditionalData method
// Just test if the call works - v2 API support is limited in official SDK v1
$this->recordResult('v2 API Support', false, "v1 API works but v2 cursor pagination not available in official SDK v1. Retrieved summary in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('v2 API Support', false, $e->getMessage(), $elapsed);
}
} catch (Exception $e) {
$this->recordResult('v2 API Support', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testErrorHandling(SocialAccount $socialAccount): void
{
$this->info('Test 5: Error Handling');
try {
// Test 5a: Invalid Token
$this->testInvalidToken();
// Test 5b: Non-existent Resource
$this->testNonExistentResource($socialAccount);
} catch (Exception $e) {
$this->recordResult('Error Handling', false, $e->getMessage(), 0);
}
$this->newLine();
}
private function testInvalidToken(): void
{
$this->info('Test 5a: Invalid Token');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken('invalid_token');
$client = new DealsApi(null, $config);
$client->getDealsSummary();
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Invalid Token Error', false, "Expected error but request succeeded in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Invalid Token Error', true, "Correctly threw exception: {$e->getMessage()} in {$elapsed}ms", $elapsed);
}
}
private function testNonExistentResource(SocialAccount $socialAccount): void
{
$this->info('Test 5b: Non-existent Resource');
$startTime = microtime(true);
try {
$config = new Configuration();
$config->setAccessToken($socialAccount->provider_user_token);
$client = new DealsApi(null, $config);
// Try to get a deal with a very high ID that likely doesn't exist
// Official SDK has getDealsSummary which works without specific ID
// Instead, let's test with an invalid field ID
try {
$fieldClient = new DealFieldsApi(null, $config);
$fieldClient->getDealField(999999999); // Very high ID that likely doesn't exist
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', false, "Expected error but request succeeded in {$elapsed}ms", $elapsed);
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', true, "Correctly threw exception: {$e->getMessage()} in {$elapsed}ms", $elapsed);
}
} catch (Exception $e) {
$elapsed = round((microtime(true) - $startTime) * 1000, 2);
$this->recordResult('Non-existent Resource Error', false, $e->getMessage(), $elapsed);
}
}
private function recordResult(string $testName, bool $success, string $message, float $elapsed): void
{
$this->results[] = [
'test' => $testName,
'success' => $success,
'message' => $message,
'elapsed' => $elapsed,
];
$status = $success ? '✅ PASS' : '❌ FAIL';
$this->line(" {$status} - {$testName}: {$message}");
}
private function displayResults(): void
{
$this->newLine();
$this->info('=== POC Test Results Summary ===');
$this->newLine();
$total = count($this->results);
$passed = count(array_filter($this->results, fn ($r) => $r['success']));
$failed = $total - $passed;
$this->line("Total Tests: {$total}");
$this->line("Passed: {$passed}");
$this->line("Failed: {$failed}");
$this->newLine();
$totalTime = array_sum(array_column($this->results, 'elapsed'));
$this->line("Total Execution Time: {$totalTime}ms");
$this->newLine();
if ($failed > 0) {
$this->warn('Failed Tests:');
foreach ($this->results as $result) {
if (! $result['success']) {
$this->line(" - {$result['test']}: {$result['message']}");
}
}
$this->newLine();
}
$this->info('=== Detailed Results ===');
foreach ($this->results as $result) {
$status = $result['success'] ? '✅' : '❌';
$this->line("{$status} {$result['test']} ({$result['elapsed']}ms): {$result['message']}");
}
$this->newLine();
$this->info('=== Recommendations ===');
if ($passed === $total) {
$this->info('✅ All tests passed! The official SDK is viable for migration.');
$this->info('Next steps: Proceed with full migration planning.');
} else {
$this->warn('⚠️ Some tests failed. Review the failures above before proceeding.');
$this->warn('Consider hybrid approach or investigate alternatives if critical operations fail.');
}
}
}
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app, folder
.circleci, folder
.cursor, folder
.github
.sonarlint, folder
.vscode, folder
.windsurf, folder...
|
49810
|
NULL
|
NULL
|
NULL
|
|
35528
|
1321
|
27
|
2026-05-13T12:33:36.627385+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675616627_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0 lыlec2-user@ip-10-30-129-190:~883-zshSprint Review - in 27 mA100% C78• Wed 13 May 15:33:36181DOCKER© *1DEV (docker)Last login: Wed May 13 09:16:21 on ttys010982APP (-zsh)84screenpipe"• ₴5Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
-8697677780648740066
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0 lыlec2-user@ip-10-30-129-190:~883-zshSprint Review - in 27 mA100% C78• Wed 13 May 15:33:36181DOCKER© *1DEV (docker)Last login: Wed May 13 09:16:21 on ttys010982APP (-zsh)84screenpipe"• ₴5Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
35526
|
NULL
|
NULL
|
NULL
|
|
35527
|
1322
|
38
|
2026-05-13T12:33:36.432452+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675616432_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"bounds":{"left":0.6988032,"top":0.10055866,"width":0.011303191,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"bounds":{"left":0.71210104,"top":0.10055866,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7237367,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.73105055,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35526
|
1321
|
26
|
2026-05-13T12:33:33.764344+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675613764_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0 lыlec2-user@ip-10-30-129-190:~883-zshSprint Review - in 27 mA100% C78• Wed 13 May 15:33:33181DOCKER0 *1DEV (docker)Last login: Wed May 13 09:16:21 on ttys010982APP (-zsh)84screenpipe"• ₴5Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
502510162056698811
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0 lыlec2-user@ip-10-30-129-190:~883-zshSprint Review - in 27 mA100% C78• Wed 13 May 15:33:33181DOCKER0 *1DEV (docker)Last login: Wed May 13 09:16:21 on ttys010982APP (-zsh)84screenpipe"• ₴5Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35525
|
1322
|
37
|
2026-05-13T12:33:33.776418+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675613776_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2343244149218324613
|
-7881077389668029571
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}...
|
35523
|
NULL
|
NULL
|
NULL
|
|
35524
|
1321
|
25
|
2026-05-13T12:33:21.533136+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675601533_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
12
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you coul...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"12","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
4180225408381680833
|
-3559557389246262808
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
12
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you coul...
|
35522
|
NULL
|
NULL
|
NULL
|
|
35523
|
1322
|
36
|
2026-05-13T12:33:21.336262+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675601336_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
12
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you coul...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"bounds":{"left":0.6871675,"top":0.10055866,"width":0.011303191,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"12","depth":4,"bounds":{"left":0.70046544,"top":0.10055866,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"bounds":{"left":0.71210104,"top":0.10055866,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7237367,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.73105055,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
4180225408381680833
|
-3559557389246262808
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
12
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you coul...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35489
|
1322
|
11
|
2026-05-13T12:31:25.173074+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675485173_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
7581618884890279806
|
-8204352174202572862
|
visual_change
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
PhostormVIewINavigareCodeKeractorFV faVsco.js°9 JY-20891-improve-sms-text-relaysProledey© MailboxController.phpM MakefileJ package-lock.json= phpstan.neon.dist= phpstan-baseline.neon<> phpunit.xmlTaraw_sqL_query.sqMLPEADME mdC) TextRelayService.onp© Sso.phpossocontroller.ong© TextMessa©smsmessage.ong© SmsLength.php© TextRelay.phpService/Search.php x © ActivityStatusin.phpclass Searchm 610 A V< sonar-project.propertiesE test.py‹› Untitea Diagram.Xmiis vetur.config.jsM+ WEBHOOK_FILTERING_IMPLEM› ih External Librariesv E° Scratches and Consolesv C Database ConsolesV AEU& console EUl& DEALRISKS EUI& DI (EU]AEUEUv diminnv@localhostA console fiminnv@localho4 DI lliminnv@localhost]4 HS local fiminnv@localhc4 SF jiminny@localhost]Azoho dev fiminnvalocall• DROn# concole [ROnll# concole 1 [pponlA DI (PRODI› AQA› A QAI PRODA STAGINGA console [STAGINGIA console 1 [STAGING]& uranus STAGING> C Extensionsv @ ScratchesEphpstorm_shortcuts.txt=° scratch.txt{° scratch_1.ison{° scratch 2 ison<° scratch 3lison= scratch 4 txtphe scratch 5.ohnphe scratch 6.ohnSscratch 7isonscratch R.isonf° staae? icon= toctselt s...iprivate function createSearch(Query $query, Searchable|string $modelOrindex): Elastica\Searchif (request() && request()->has('debug')) {"dehua' => requesto->aet('dehua')168'userUuid' => request(->user?->getIdString ?? 'anonymous','query' => ison encode(Squery->toArrayOflaas: HISON THROW ON ERROR).'url' => request->fullUrlO,208420051):recurn schis->cllent->createIndex( indexName: $model0rIndex instanceof Searchable ? Smodel0rIndex->qetIndex : $model0r 2010->createsearch squery)2012public function scroll(Query Squery. Searchable|string Smodel): Elastica\Scroll{...}* dparam searchablestrino smodelurindex usaoe of model 1s deprecated* dreturn Lazucollection<int. Document>public function scrollOverDocuments(Query $query, Searchable|string $model0rIndex): LazyCollection(...}Lix** Aoaran Searchablelstrina SmodelOrIndey usage of model is denrecated2023public function search(Query $query, Searchablelstring $modelOrIndex, ?string $queryName = null): Elastica2027Datadog::increment( stats: 'jiminny.es.search', sampleRate: 1, ['query' => $queryName ?? "']):— 2029$before = microtime( as_float: true);Sresult = $this->createSearch($query, Smodel0rIndex)->search•:Cofton = micnotimed as tloat: true)"Datadog:: timing( stat: "jiminny.es.search.time', (int) (($after - $before) * 1000)sampleRate: 1, ['querireturn sresult.= custom.logscratch_8.son= laravel.logA console (EU]A console [STAGING]"hits" :?"job" : { 7 keys }."roles" : [ 1 element ]."group" : { 14 keys }"loadi . nulli"contact" : { 21 keys }"opportunity" : null"transcription" : { 4 keys }"stats" : { 17 keys }"connection 1d" : null.A SF jiminny@localhost]A console [PROD]hel• Sonint Keview • In 25 m100% L2• Wed 13 May 15:31:24AskJiminnyReportActivityServiceTest vCascadeTrial Owner Role SeleRetactoring User EmaDashboard Activity De!115 v.78AIt is there I just didn't include it "tracks" : [+0 ..: "2026-05-12 13:14:08","2026-05-12 13:51:33","staly ortset, nuttr• H2024-05-12 13-51-3011lundotod ** • 120040619 12.51•C/1"id string" : "32726a31-9975-4bd4-8c19-c3d58043358f""telephony_provider_id" : "82092948046:59p4elapnc61duknuismaq8cuo:v:1778591700:575"'"connection_1d" : null.Ask anvthina (84L)« Code SWF-1.6No ISON schema...
|
35487
|
NULL
|
NULL
|
NULL
|
|
35488
|
1321
|
15
|
2026-05-13T12:31:24.213197+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675484213_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
7581618884890279806
|
-8204352174202572862
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
iTerm2ShellEditViewSessionScriptsProfilesWindowHelp> 0 llec2-user@ip-10-30-129-190:~883-zshSprint Review - in 29 mA100% <]8• Wed 13 May 15:31:23181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"€ 885Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
35486
|
NULL
|
NULL
|
NULL
|
|
35485
|
1321
|
13
|
2026-05-13T12:31:21.990604+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675481990_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
35484
|
NULL
|
NULL
|
NULL
|
|
35484
|
1321
|
12
|
2026-05-13T12:31:08.652540+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675468652_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp> 0 llec2-user@ip-10-30-129-190:~883-zshSprint Review - in 29 mA100% <]8• Wed 13 May 15:31:08181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"• 885Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
-1156564781903484558
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp> 0 llec2-user@ip-10-30-129-190:~883-zshSprint Review - in 29 mA100% <]8• Wed 13 May 15:31:08181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"• 885Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35483
|
1322
|
9
|
2026-05-13T12:31:06.261704+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675466261_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"bounds":{"left":0.6988032,"top":0.10055866,"width":0.011303191,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"bounds":{"left":0.71210104,"top":0.10055866,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7237367,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.73105055,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
35482
|
NULL
|
NULL
|
NULL
|
|
35482
|
1322
|
8
|
2026-05-13T12:31:03.484244+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675463484_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-3217526785416111167
|
-8132290182084711486
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
PhostormVIewINavigareCodeKeractorFV faVsco.js°9 JY-20891-improve-sms-text-relaysProledey© MailboxController.phpM MakefileJ package-lock.json= phpstan.neon.dist= phpstan-baseline.neon<> phpunit.xmlTaraw_sqL_query.sqMLPEADME mdC) TextRelavService.pnp© Sso.phpossocontroller.ong© TextMessa© SmsLength.php© TextRelay.phpService/Search.php x © ActivityStatusin.phpclass Search=| A10 A V.< sonar-project.propertiesE test.py‹› Untitea Diagram.Xmiis vetur.config.isM+ WEBHOOK_FILTERING_IMPLEM› ih External Librariesv E° Scratches and Consolesv C Database ConsolesV AEU& console EUl& DEALRISKS EUI& DI (EU]AEUEUv diminnv@localhostA console fiminnv@localho4 DI lliminnv@localhost]4 HS local fiminnv@localhc4 SF jiminny@localhost]Azoho dev fiminnvalocall• DROn# concole [ROnll# concole 1 [pponlA DI (PRODI› AQA› A QAI PRODA STAGINGA console [STAGINGIA console 1 [STAGING]& uranus STAGING> C Extensionsv @ ScratchesEphostorm_shortcuts.txt=° scratch.txt4° scratch_1.ison{° scratch 2 ison<° scratch 3lison= scratch 4 txtphe scratch 5.ohophe scratch 6.ohnSscratch 7isonscratch R.isonfO staae? icon= toctselt s...iprivate function createSearch(Query $query, Searchable|string $modelOrindex): Elastica\Searchif (request() && request()->has('debug')) {"dehua' => requesto->aet('dehua')'userUuid' => request(->user?->getIdString) ?? 'anonymous','query' => ison encode(Squery->toArrayOflaas: HISON THROW ON ERROR).'url' => request->fullUrlO,1):recurn schis->cllent->createIndex( indexName: $model0rIndex instanceof Searchable ? Smodel0rIndex->qetIndex : $model0r->createsearch squery)public function scroll(Query Squery. Searchable|string Smodel): Elastica\Scroll{...}208%2088208S21112112* dparam searchablestrino smodelurindex usaoe of model 1s deorecatedi* dreturn Lazucollection<int. Document>21192114211521162117public function scrollOverDocuments(Query $query, Searchable|string $model0rIndex): LazyCollection(...}21182119Lix** Aoaran Searchable|strina Snodel0rIndey usage of model is denrecated21202127public function search(Query $query, Searchablelstring $modelOrIndex, ?string $queryName = null): ElasticaDatadog::increment( stats: 'jiminny.es.search', sampleRate: 1, ['query' => $queryName ?? "']):— 2124$before = microtime( as_float: true);Sresult = $this->createSearch($query, Smodel0rIndex)->search0:Cofton = micnotimed as tloat: true)"Datadog:: timing( stat: "jiminny.es.search.time', (int) (($after - $before) * 1000)sampleRate: 1, ['quer: 2133return sresult.= custom.logt scratch_8.json>= laravel.logA SF jiminny@localhost]A console (EU]A console [STAGING]"hits" :?"m3u8""codecs" : null.:507600esolution" : 120)"0.00",: "2026-05-12 13:14:08","2026-05-12 13:51:33","narent track id" : null.2026-05-12 13-52.321"updated_at" : "2026-05-12 13:54:18","deleted at" : nuli."id strinoll • 1164060204-c700-442p-a501-ha4bhcXZae88".itelenhony nroviden idil • nuihi"playlists" : []"plays" : [ ]: { 20 keys }."coaching_feedbacks" : [ ]"Tavorites"."name" : "MI - Ecosystem""sequence" : 10"was answered" : true.#2022-07-26 16:59:23""2022-08-17 23:27:42""d9613646-66fb-413e-b7b2-99eb25116ee9""cnpated ati •12026-05-07 10-04-22"12026-05-12 14-25-10"12026-05-12 14-25-10""favorite_count" : 0,& console [PROD)]!115 v.78Asonint Keview • In z5m100% S2• Wed 13 May 15:31:03AskJiminnyReportActivityServiceTest vcascadeTrial Owner Role SeleRetactoring User EmaDashboard Activity De+0 ..relation : FegtThouaht for 3slLooking at the Elasticsearch record, here are the key fields to check for dashboard visibility:Critical Fields (All Present v )1. status: "failed" - Included in default status filterv2. type : "conference" - Allowed activity type M3. lis private: false - Passes privacy filter V4. c internal : false - Should be visible v5. actual start time: "2026-05-12 13:14:08" - Reguired field exists V6. actual end time: "2026-05-12 13:51:32" - SxistsMissing Field to Checktracks - don't see this field in the ES record. The ActivityRecorded tilter checks for tracks with type audio or video.Even though Teaminsights overrides this to OPTION_ALL, verify:• Does the activity have tracks indeyed in Flasticsearch2•Search for "tracks": [ in the full ES documentTeamgrouo Scove Check•user.team..id : 575 (NationBuilder)user.aroun.team 1d • 575|Verify: Does the user viewing the dashboard (user id: 29089) have access to team 575? Check the RestrictTeam and RestrictUserGroupScope filtersRecommended Debugging"bash# 1. Check if tracks field exists in EScurl -X GET "localhost:9200/activities/ doc/79763436? source=tracks"#2. Check the actual dashboard query being executed#Add logaina in TeamTnsiahtsRenositorv::getDashboardActivitvOverTime to sep the eyact Flasticsearch .#3. Verify user permissions#Check i4 ucer 20080 can cee team 575 activitiecMost Likely IssueIf the tracks field is missing or empty, and the TeamInsights/ActivityRecorded override isn't working correctly (or anexplicit filter value is being passed), this could exclude the activity from dashboard results.Gal .Ask anvthina (84L)< CodeSWE-16W Windcurf Toams 2004-11 UTF.82 spaces No JSON schema...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35481
|
1321
|
11
|
2026-05-13T12:31:03.488788+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675463488_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp> 0 llec2-user@ip-10-30-129-190:~883-zshSprint Review - in 29 mA100% <]8• Wed 13 May 15:31:03181DOCKER-₴1DEV (docker)Last login: Wed May 13 09:16:21 on ttys010982APP (-zsh)84screenpipe"• ₴5Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
6663204031413350982
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp> 0 llec2-user@ip-10-30-129-190:~883-zshSprint Review - in 29 mA100% <]8• Wed 13 May 15:31:03181DOCKER-₴1DEV (docker)Last login: Wed May 13 09:16:21 on ttys010982APP (-zsh)84screenpipe"• ₴5Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
35479
|
NULL
|
NULL
|
NULL
|
|
35480
|
1322
|
7
|
2026-05-13T12:30:57.686621+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675457686_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-3346245719057788321
|
-7196539678208059965
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
PhostormVIewINavigareCodeKeractorFV faVsco.js°9 JY-20891-improve-sms-text-relaysProledey© MailboxController.phpM MakefileJ package-lock.json= phpstan.neon.dist= phpstan-baseline.neon<> phpunit.xmlTaraw_sqL_query.sqMLPEADME mdC) TextRelayService.onp© Sso.php© SsoController.php© TextMessa©smsmessage.ong© SmsLength.php© TextRelay.phpService/Search.php x © ActivityStatusin.phpclass Searchm A10 A v< sonar-project.propertiesE test.py‹› Untitea Diagram.Xmiis vetur.config.jsM+ WEBHOOK_FILTERING_IMPLEM› ih External Librariesv E° Scratches and Consolesv C Database ConsolesV AEU& console EUl& DEALRISKS EUI& DI (EU]AEUEUv diminnv@localhostA console fiminnv@localho4 DI lliminnv@localhost]4 HS local fiminnv@localhc4 SF jiminny@localhost]Azoho dev fiminnvalocall• DROn# concole [ROnll# concole 1 [pponlA DI (PRODI› AQA› A QAI PRODA STAGINGA console [STAGINGIA console 1 [STAGING]& uranus STAGING> C Extensionsv @ ScratchesEphpstorm_shortcuts.txt=° scratch.txt{° scratch_1.ison{° scratch 2 ison<° scratch 3lison= scratch 4 txtphe scratch 5.ohnphe scratch 6.ohnSscratch 7isonscratch R.isonf° staae? icon= toctselt s...iprivate function createSearch(Query $query, Searchable|string $modelOrindex): Elastica\Searchif (request() && request()->has('debug')) {"dehua' => requesto->aet('dehua')'userUuid' => request(->user?->getIdString) ?? 'anonymous','query' => ison encode(Squery->toArrayOflaas: HISON THROW ON ERROR).'url' => request->fullUrlO,1):recurn schis->cllent->createIndex( indexName: $model0rIndex instanceof Searchable ? Smodel0rIndex->qetIndex : $model0->createsearch squery)public function scroll(Query Squery. Searchable|string Smodel): Elastica\Scroll{...}* dparam searchablestrino smodelurindex usaoe of model 1s deorecatedi* dreturn Lazucollection<int. Document>2121public function scrollOverDocuments(Query $query, Searchable|string $model0rIndex): LazyCollection(...}2128Lix** Aoaran Searchable|strina Snodel0rIndey usage of model is denrecated21292130213121154public function search(Query $query, Searchablelstring $modelOrIndex, ?string $queryName = null): Elastica21153Datadog::increment( stats: 'jiminny.es.search', sampleRate: 1, ['query' => $queryName ?? "']):$before = microtime( as_float: true);2137Sresult = $this->createSearch($query, Smodel0rIndex)->search0:Cofton = micnotimed as tloat: true)"Datadog:: timing( stat: "jiminny.es.search.time', (int) (($after - $before) * 1000)sampleRate: 1, ['quer'return sresult.21/0= custom.logtscratch_8.json XA SF jiminny@localhost]A console (EU]A console [STAGING]"hits":{vv v:0"Lead" : null."contact" : { 21 keys }.: { 4 keys }.[ 3 elements ]l• 20 kevs?.coachina feedbacks" . []"stage""type" : "all".• "МT - Fcosvstem""ai_prompt_description" : null,"sequence" : 10"was_answered" . true."is defaul+i • falcel"creaced_ar".#2022-07-26 16:59:23',"2022-08-17 23:27:42","id string" : "d9613646-66fb-413e-b7b2-99eb25116ee9""partner id" : "7ed483d6-f550-4a72-9216-49442257b2c1""created at" : "2026-05-07 10:04:24""2026-05-12 14:25:19""2026-05-12 14:25:19"."favorite_count" : 0,: 0,"recordina state" : "recorded""necordina reason code" : 32768)"fnom nanticinant id" • nulli"to nanticinant id" • nulli"enm confiaunation id" . 90al"account id" • 164238201159051& console [PROD)]!115 v.78Asonnt keview • In 3um100% S2• Wed 13 May 15:30:57AskJiminnyReportActivityServiceTest vcascadeTrial Owner Role SeleRetactoring User EmaDashboard Activity De+0 ..w"value" :1 "ootThouaht for 3slLooking at the Elasticsearch record, here are the key fields to check for dashboard visibility:Critical Fields (All Present v )1. status: "failed" - Included in default status filterv2. type : "conference" - Allowed activity type Mis private : false - Passes privacy tilter v4. is_internal: false - Should be visibleactual start time: "2026-05-12 13:14:08" - Reguired field exists V6. actual end time: "2026-05-12 13:51:32" - ExistsMissing Field to Checktracks - don't see this field in the ES record. The ActivityRecorded tilter checks for tracks with type audio or video.Even though Teaminsights overrides this to OPTION_ALL, verify:• Does the activity have tracks indeyed in Flasticsearch?•Search for "tracks":[ in the full ES documentTeamgrouo Scove Check•user.team..id : 575 (NationBuilder)user.aroun.team 1d • 575|Verify: Does the user viewing the dashboard (user id: 29089) have access to team 575? Check the RestrictTeam and RestrictUserGroupScope filtersRecommended Debugging"bash# 1. Check if tracks field exists in EScurl -X GET "localhost:9200/activities/ doc/79763436? source=tracks"#2. Check the actual dashboard query beina executed#Add logaina in TeamTnsiahtsRenositorv::getDashboardActivitvOverTime to sep the eyact Flasticsearch .#3. Verify user permissions#Check i4 ucer 20080 can cee team 575 activitiedMost Likely IssueIf the tracks field is missing or empty, and the TeamInsights/ActivityRecorded override isn't working correctly (or anexplicit filter value is being passed), this could exclude the activity from dashboard results.Gal .Ask anvthina (84L)" CodeSWE-16W Windsurf Teams 70:26 UTF-82 spacesNo ISON schema...
|
35472
|
NULL
|
NULL
|
NULL
|
|
35479
|
1321
|
10
|
2026-05-13T12:30:59.596308+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675459596_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
909259038819550250
|
-7881077389668029571
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35478
|
1321
|
9
|
2026-05-13T12:30:57.711104+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675457711_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0 (4lec2-user@ip-10-30-129-190:~883-zshSprint Review - in 30 mA100% <]8• Wed 13 May 15:30:57181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"• ₴5Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
3912082937631865115
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0 (4lec2-user@ip-10-30-129-190:~883-zshSprint Review - in 30 mA100% <]8• Wed 13 May 15:30:57181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"• ₴5Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
35477
|
NULL
|
NULL
|
NULL
|
|
35477
|
1321
|
8
|
2026-05-13T12:30:51.878603+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675451878_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0 (4lec2-user@ip-10-30-129-190:~883-zshSprint Review - in 30 mA100% <]8• Wed 13 May 15:30:51181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"• ₴5Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
6516069436972966993
|
NULL
|
idle
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0 (4lec2-user@ip-10-30-129-190:~883-zshSprint Review - in 30 mA100% <]8• Wed 13 May 15:30:51181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"• ₴5Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35476
|
1322
|
6
|
2026-05-13T12:30:21.343151+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675421343_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"bounds":{"left":0.6988032,"top":0.10055866,"width":0.011303191,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"bounds":{"left":0.71210104,"top":0.10055866,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7237367,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.73105055,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"bounds":{"left":0.43450797,"top":0.09736632,"width":0.56549203,"height":0.90263367},"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
35472
|
NULL
|
NULL
|
NULL
|
|
35475
|
1321
|
7
|
2026-05-13T12:30:21.322427+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675421322_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
35474
|
NULL
|
NULL
|
NULL
|
|
35474
|
1321
|
6
|
2026-05-13T12:30:20.217425+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675420217_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
4957189420353101602
|
-8132360550921819198
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0 (4lec2-user@ip-10-30-129-190:~883-zshSprint Review - in 30 mA100% <]8• Wed 13 May 15:30:20181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"• ₴5Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35473
|
1321
|
5
|
2026-05-13T12:30:05.843543+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675405843_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"}]...
|
7130865360800391539
|
-8132290182084580414
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0 (4lec2-user@ip-10-30-129-190:~883-zshSprint Review - in 30 mA100% <]8• Wed 13 May 15:30:05181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"• 885Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
35471
|
NULL
|
NULL
|
NULL
|
|
35472
|
1322
|
5
|
2026-05-13T12:29:50.053748+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675390053_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"bounds":{"left":0.6988032,"top":0.10055866,"width":0.011303191,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"bounds":{"left":0.71210104,"top":0.10055866,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7237367,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.73105055,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35471
|
1321
|
4
|
2026-05-13T12:29:50.087419+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675390087_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35470
|
1321
|
3
|
2026-05-13T12:29:48.616707+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675388616_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-7834818355592806962
|
-7881072991621518467
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide...
|
35466
|
NULL
|
NULL
|
NULL
|
|
35469
|
1322
|
4
|
2026-05-13T12:29:47.000445+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675387000_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-7834818355592806962
|
-7881072991621518467
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide...
|
35468
|
NULL
|
NULL
|
NULL
|
|
35468
|
1322
|
3
|
2026-05-13T12:29:31.898941+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675371898_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"bounds":{"left":0.6988032,"top":0.10055866,"width":0.011303191,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"bounds":{"left":0.71210104,"top":0.10055866,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7237367,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.73105055,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35465
|
1322
|
1
|
2026-05-13T12:29:22.503262+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675362503_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"bounds":{"left":0.6988032,"top":0.10055866,"width":0.011303191,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"bounds":{"left":0.71210104,"top":0.10055866,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7237367,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.73105055,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35464
|
1321
|
1
|
2026-05-13T12:29:22.286054+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675362286_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
35462
|
NULL
|
NULL
|
NULL
|
|
35463
|
1322
|
0
|
2026-05-13T12:29:20.314080+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675360314_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
7581618884890279806
|
-8204352174202572862
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
PhostormFV faVsco.js vVIewINavigareg9 JY-20891-improvecodeKeractorProledeyCreateTeam.php© UserInvitationDTO.php© MailboxController.phpDModelFiller• D Servicesearch.onpC clientonp0 EloquentEncodingEncryptionDESW FakenFeatureFlags0 FFMpea• FileSystemla Gecko• GongD GuzzleHttp• KeyPointsN KioskiMlivepodD LocksD Math• MediaPipelineD MeetingBotMobileSettingsModollNotification_NuaceParagraphBreaker_ ParticipantspeechPartitionedCookiePlavlist• Prophet_ ProphetAlla Queue• Router7 Saml2O SCIMm SeedenO Sentry1M SerializenSettingsM SidekickD Slack© TextRelayService.phpcmalllextkelay.onp© Sso.phpossocontroller.ong© TextMessa©)smsmessage.png© SmsLength.phpService/Search.php x © ActivityStatusin.php) Textrelav.ohoclass Search): self {..}=| A10 A V.TimeMemoryMapper1 TranccrintionTranscriptionSummaryM Twilidprivate function createSearch(Query $query, Searchable|string $model0rIndex): Elastica\Searchif (request() && request() ->has('debug')) {Log::info('debug' => request() -›get('debug'),1):'userUvid' => request()-›user()?->getIdString() ?? 'anonymous','query' => json, encode($query->toArray(),flaas: LISON THROW ON ERROR).'url' => request() ->fullUrl(),recurn schis->culent->createIndex( indexName: $model0rIndex instanceof Searchable ? Smodel0rIndex->qetIndex : Smodel0->createsearch squery)public function scroll(Query $query, Searchable|string $model): Elastica\Scroll{..}* doaram searchablestrino smode urindex usaoe of model 1s deprecateddreturn Lozucollection<int. Document>public function scrollOverDocuments(Query $query, Searchable|string $model0rIndex): LazyCollection(...}I 2115Lt Epacan Searchable /stning Snodetortndex usage of node is deprecated2118public function search(Query $query, Searchablelstring $model0rIndex, ?string $queryName = null): Elastica2120Datadog: : increment( stats:'jiminny.es.search', (sampleRate:1, ['query' => $queryName ?? "'I);21212122$before = microtime( as_float: true);2123Sresult = Sthis->createSearch(Squery. Smodel0rIndex)->searchO):Safter = microtime( as_float: true);2127Datadog: : timing( stat:) 'jiminny.es.search.time', (int) (($after - $before) * 1000),sampleRate: 1, ['quer'return sresult.= custom.logA console (EU)( scratch_8.jsonxElaravel.logA console [STAGING]"hits" : {4 SF [jiminny@localhost]& ho_local Uiminny@localnostA console [PROD]'_source" : { |"User" :""1d_ strinq" : "24098d00-9t6a-45b2-ad75-50a0c41869Ct".81"team" ?*"id": 575,"name" : "NationBuilder","slug" : "nationbuilder","country code" : "US".."conference_record_preference" : 1,"softphone_record_preference" : 2,"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac""job" : { 7 keys },"roles" : [ 1 element ],"group" : { 14 keys }"Zead" : null,"contact" : { 21 keys },"opportunity" : null,"transcription" : { 4 keys },"stats" : { 17 keys }."tracks" : [ 3 elements ],"playL1stS" :"pLays" : [ 1,"account" : { 20 keys }."coachina feedbacks" :"favorites" : [ ],"stage""category": {"type":"all",•"M - Ecosvstem")"ai_prompt_description" : null,"sequence" : 10,"was_answered" : true,"is_default" : false."created_at" : "2022-07-26 16:59:23","undatod atit."2022-08-17 23:27:42","id_string" : "d9613646-66fb-413e-b7b2-99eb25116ee9""partner_id" : "7ed483d6-f550-4a72-9216-49442257b2c1",Innoviden" • "z00m-bot","created at" : "2026-05-07 10:04:24""2026-05-12 14:25:19""2026-05-12 14:25:19",!115 v.78Asonnt keview • In 31h100% L28• Wed 13 May 15:29:19AskJiminnyReportActivityServiceTest vcascadeTrial Owner Role SeleRetactoring User EmaDashboard Activity De+0 ..7. Debugging Stepsh bashcurl -X GET "localhost:9200/activities/_doc/79763436"*7. Check sif actual ctart time field exicts in EC documenti# 3. Check dashboard date range in browser dev tools#Look for: start date and end date parameters*4. Verlry user ceam membership* Check user 29089's team_id matches activity's teamSummarv Flow DiadramAPT Request Dashboardcontroller)Create Criteria with CONTEXT TEAM INSIGHTS ACTIVITYBuild FilterSet (13 filters)Apply Security Filters (Team, Channel, Privacy)Aoolv ActivitvStatusIn (completed + failed)Aoply TeamInsiahts/ActiviltvRecorded COPTTON_ALL - NOT ApPLIED)ADoLy Daterangerilter 96 davs detault)Build Elasticsearch BoolQueryExecute Dashboard Query (getDashboardActivityOverTime)Filter by tvoe (conference, softohone, softohone-inbound)Filter by Exists(actual start time) ~ CRITICAIAggregate by date histogramReturn results to frontendr.nl.Ask anvthina (84L)"Code SWF-1.6W Windsurf Teams 46:1 (1187 chars, 45 line breaks) UTF-82 spaces No JSON schema...
|
35461
|
NULL
|
NULL
|
NULL
|
|
35462
|
1321
|
0
|
2026-05-13T12:29:20.340492+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675360340_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5712202241521779175
|
-8348537731026670142
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0.ec2-user@ip-10-30-129-190:~883-zshSprint Review - in 31 mA100% <]8• Wed 13 May 15:29:19181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"• ₴5Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35461
|
NULL
|
0
|
2026-05-13T12:29:06.501852+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675346501_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhostormVIewINavigarecodeKeractorFV faVsco.js°9 JY PhostormVIewINavigarecodeKeractorFV faVsco.js°9 JY-20891-improveProledeyC) CreateTeam.onp(C) UserinvitationDlo.ong© MailboxController.phpModelFiller• D Servicesearch.onpC clientonp0 EloquentD EncodingEncryptionDESW FakenFeatureFlags0 FFMpeal Fllesvstemla GeckoGongD GuzzleHttpN KevPointsN KioskiMlivepodD LocksM Math1M Media Pineline1N MeetinaRotlM MobileSettingsModollD Notification_NuaceC ParagraphBreaker_ Participantspeech0 PartitionedCookiePlavlistProphet_ ProphetAlla Queue• Router7 Saml2MSCIMm SeedenM Sentry1M SerializenD SettingsM SidekickM Slack© TextRelayService.phpcmalllextkelay.onp© Sso.phpossocontroller.ong© TextMessa©)smsmessage.png© SmsLength.php) Textrelav.ohoService/Search.php x © ActivityStatusin.phpclass Searchm 410 A VN TimoMomorvMannor1 Tranccrintionselt s...private function createSearch(Query $query, Searchable|string $modelOrindex): Elastica\Searchif (request() && request()->has('debug')) {Loa: - infod"dehua' => requesto->aet('dehua')'userUuid' => request(->user?->getIdString ?? 'anonymous','query' => ison_encode(Squery->toArrayOflaas: LISON THROW ON ERROR).'url' => request->fullUrlO,1):recurn schis->culent-SenontoIndoy( indeyName• SmodolhnIndoy inctanconf Connchablo ) SmodolhnIndoy-SaotIndoy() • Smodoln!->createsearch squery)public function scroll(Query Squery. Searchable|string Smodel): Elastica\Scroll{...}* doaram searchable strino smode urindex usaoe of model 1s deorecateddreturn Lozucollection<int. Document>public function scrollOverDocuments(Query $query, Searchable|string $model0rIndex): LazyCollection(...}public function search(Query $query, Searchablelstring $modelOrIndex, ?string $queryName = null): ElasticaDatadog::increment( stats: 'jiminny.es.search', sampleRate: 1, ['query' => $queryName ?? "']):$before = microtime( as_float: true);Gnocul+ = Cthic-senentoSoanch/Cauenv GmodolAnTndey/_scoanch(-Caston = microtimed as tloat: true.Datadog:: timing( stat: "jiminny.es.search.time', (int) (($after - $before) * 1000)sampleRate: 1, ['quer'C TranscriptionSummaryM Twilidreturn sresult.= custom.logt scratch_8.json X = laravel.logA SF [jiminny@localhost]& ho_local Uiminny@localnost& console [PROD]A console (EU]1525A console [STAGING]"took" : 896"timed_out"Talse,: 14,kipped""relation" : "eah'max_score" : 1.0"hits" :"activities",10 11°763636,type"•"en_ob",'duration" : 2245"stacus". "Tallea","calendar event id" : 25540483"Loq reminder sent at" : null"1S_1nternal" : talse"1S_private":false"s instant invite" : talsel"title" : "SamLockwood.Brand Response<> Line. NationBuilder"."descrintion" : "u"Line Kristensen is inviting vou to a scheduled Zoom meetina.Topic: SamLockwood.Brand Response&t:&ot: Line. NationBuilderTime: Mav 12. 2026 02:15 PM LondonJoin Zoom Meetinghttps://nationbuilder.zoom.us/j/82092948046Meeting chat linkhttns://nationhuilden.zoom.us/launch/ic/82092948046Mootina Th: 920 0204 9044Ano tan mobilol[PHONE].82092948046# US!115 V.78sonnt keview • In 31h100% L2• Wed 13 May 15:29:06AskJiminnyReportActivityServiceTest vcascadeTrial Owner Role SeleRetactoring User EmaDashboard Activity De+0 ..7. Debuaaing Stepsh bashcurl -X GET "localhost:9200/activities/_doc/79763436"*7. Check sif actual ctart time field exicts in EC documenti# 3. Check dashboard date range in browser dev tools# Look for: start date and end date parameters*4. Verlry user ceam membership# Check user 29089's team id matches activity's teamSummarv Flow DiadramAPT Request (DashboardController)Create Criteria with CONTEXT TEAM INSIGHTS ACTIVITYBuild FilterSet (13 filters)Apply Security Filters (Team, Channel, Privacy)Aoolv ActivitvStatusIn (completed + failed)Aoply TeamInsiahts/ActiviltvRecorded OPTTON_ALL - NOT APPLIED)ADoLy Daterangerilter 96 davs detault)Build Elasticsearch BoolQueryExecute Dashboard Query (getDashboardActivityOverTime)Filter by tvoe (conference, softohone, softohone-inbound)Filter by Exists(actual start time) ~ CRITICAIAggregate by date histogramPoturn roculte to frontondAsk anvthina (84L)" CodeSWE-16r.nl .W Windsurf Toamo105-15UTE.8I2 spaces No JSON schema...
|
NULL
|
6187029427498537941
|
NULL
|
click
|
ocr
|
NULL
|
PhostormVIewINavigarecodeKeractorFV faVsco.js°9 JY PhostormVIewINavigarecodeKeractorFV faVsco.js°9 JY-20891-improveProledeyC) CreateTeam.onp(C) UserinvitationDlo.ong© MailboxController.phpModelFiller• D Servicesearch.onpC clientonp0 EloquentD EncodingEncryptionDESW FakenFeatureFlags0 FFMpeal Fllesvstemla GeckoGongD GuzzleHttpN KevPointsN KioskiMlivepodD LocksM Math1M Media Pineline1N MeetinaRotlM MobileSettingsModollD Notification_NuaceC ParagraphBreaker_ Participantspeech0 PartitionedCookiePlavlistProphet_ ProphetAlla Queue• Router7 Saml2MSCIMm SeedenM Sentry1M SerializenD SettingsM SidekickM Slack© TextRelayService.phpcmalllextkelay.onp© Sso.phpossocontroller.ong© TextMessa©)smsmessage.png© SmsLength.php) Textrelav.ohoService/Search.php x © ActivityStatusin.phpclass Searchm 410 A VN TimoMomorvMannor1 Tranccrintionselt s...private function createSearch(Query $query, Searchable|string $modelOrindex): Elastica\Searchif (request() && request()->has('debug')) {Loa: - infod"dehua' => requesto->aet('dehua')'userUuid' => request(->user?->getIdString ?? 'anonymous','query' => ison_encode(Squery->toArrayOflaas: LISON THROW ON ERROR).'url' => request->fullUrlO,1):recurn schis->culent-SenontoIndoy( indeyName• SmodolhnIndoy inctanconf Connchablo ) SmodolhnIndoy-SaotIndoy() • Smodoln!->createsearch squery)public function scroll(Query Squery. Searchable|string Smodel): Elastica\Scroll{...}* doaram searchable strino smode urindex usaoe of model 1s deorecateddreturn Lozucollection<int. Document>public function scrollOverDocuments(Query $query, Searchable|string $model0rIndex): LazyCollection(...}public function search(Query $query, Searchablelstring $modelOrIndex, ?string $queryName = null): ElasticaDatadog::increment( stats: 'jiminny.es.search', sampleRate: 1, ['query' => $queryName ?? "']):$before = microtime( as_float: true);Gnocul+ = Cthic-senentoSoanch/Cauenv GmodolAnTndey/_scoanch(-Caston = microtimed as tloat: true.Datadog:: timing( stat: "jiminny.es.search.time', (int) (($after - $before) * 1000)sampleRate: 1, ['quer'C TranscriptionSummaryM Twilidreturn sresult.= custom.logt scratch_8.json X = laravel.logA SF [jiminny@localhost]& ho_local Uiminny@localnost& console [PROD]A console (EU]1525A console [STAGING]"took" : 896"timed_out"Talse,: 14,kipped""relation" : "eah'max_score" : 1.0"hits" :"activities",10 11°763636,type"•"en_ob",'duration" : 2245"stacus". "Tallea","calendar event id" : 25540483"Loq reminder sent at" : null"1S_1nternal" : talse"1S_private":false"s instant invite" : talsel"title" : "SamLockwood.Brand Response<> Line. NationBuilder"."descrintion" : "u"Line Kristensen is inviting vou to a scheduled Zoom meetina.Topic: SamLockwood.Brand Response&t:&ot: Line. NationBuilderTime: Mav 12. 2026 02:15 PM LondonJoin Zoom Meetinghttps://nationbuilder.zoom.us/j/82092948046Meeting chat linkhttns://nationhuilden.zoom.us/launch/ic/82092948046Mootina Th: 920 0204 9044Ano tan mobilol[PHONE].82092948046# US!115 V.78sonnt keview • In 31h100% L2• Wed 13 May 15:29:06AskJiminnyReportActivityServiceTest vcascadeTrial Owner Role SeleRetactoring User EmaDashboard Activity De+0 ..7. Debuaaing Stepsh bashcurl -X GET "localhost:9200/activities/_doc/79763436"*7. Check sif actual ctart time field exicts in EC documenti# 3. Check dashboard date range in browser dev tools# Look for: start date and end date parameters*4. Verlry user ceam membership# Check user 29089's team id matches activity's teamSummarv Flow DiadramAPT Request (DashboardController)Create Criteria with CONTEXT TEAM INSIGHTS ACTIVITYBuild FilterSet (13 filters)Apply Security Filters (Team, Channel, Privacy)Aoolv ActivitvStatusIn (completed + failed)Aoply TeamInsiahts/ActiviltvRecorded OPTTON_ALL - NOT APPLIED)ADoLy Daterangerilter 96 davs detault)Build Elasticsearch BoolQueryExecute Dashboard Query (getDashboardActivityOverTime)Filter by tvoe (conference, softohone, softohone-inbound)Filter by Exists(actual start time) ~ CRITICAIAggregate by date histogramPoturn roculte to frontondAsk anvthina (84L)" CodeSWE-16r.nl .W Windsurf Toamo105-15UTE.8I2 spaces No JSON schema...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35460
|
NULL
|
0
|
2026-05-13T12:29:06.501866+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675346501_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0.ec2-user@ip-10-30-129-190:~883-zshSprint Review - in 31 mA100% C8• Wed 13 May 15:29:06181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"885Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
-2142645582627524195
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp>0.ec2-user@ip-10-30-129-190:~883-zshSprint Review - in 31 mA100% C8• Wed 13 May 15:29:06181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"885Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
35459
|
NULL
|
NULL
|
NULL
|
|
35459
|
1319
|
57
|
2026-05-13T12:29:04.248266+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675344248_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2343244149218324613
|
-7881077389668029571
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35458
|
1320
|
78
|
2026-05-13T12:29:02.662018+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675342662_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"bounds":{"left":0.6988032,"top":0.10055866,"width":0.011303191,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"bounds":{"left":0.71210104,"top":0.10055866,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7237367,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.73105055,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
35457
|
NULL
|
NULL
|
NULL
|
|
35457
|
1320
|
77
|
2026-05-13T12:29:00.057411+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675340057_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-1362947798257697316
|
-2575675244731720149
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
PhostormVIewINavigarecodeKeractorFV faVsco.js°9 JY-20891-improveProledeyC) CreateTeam.onp(C) UserinvitationDlo.ong© MailboxController.phpModelFiller• D Servicesearch.onpC clientonp0 EloquentD EncodingEncryptionDESW FakenFeatureFlags0 FFMpeal Fllesvstemla GeckoGongD GuzzleHttpN KevPointsN KioskiMlivepodD Locks1M Math1M Media Pineline1N MeetinaRotlM MobileSettingsModollD Notification_ NudceC ParagraphBreaker_ Participantspeech0 PartitionedCookiePlavlistProphet_ ProphetAlla Queue• RouterSaml2MSCIMm SeedenM Sentry1M SerializenD SettingsM SidekickM Slack© TextRelayService.phpcmalllextkelay.onp© Sso.phpossocontroller.ong© TextMessa© SmsLength.php) Textrelav.ohoService/Search.php x © ActivityStatusin.phpclass Searchm A10 A vN TimoMomorvMannor1 TranccrintionC TranscriptionSummaryM Twilidselt "...?private function createSearch(Query $query, Searchable|string $modelOrindex): Elastica\Searchif (request() && request()->has('debug')) {Loa: - infod"dehua' => requesto->aet('dehua')'userUuid' => request(->user?->getIdString ?? 'anonymous','query' => ison_encode(Squery->toArrayOflaas: LISON THROW ON ERROR).'url' => request->fullUrlO,1):recurn schis->culent->createIndex( indexName: $model0rIndex instanceof Searchable ? Smodel0rIndex->qetIndex : $model0->createsearch squery)public function scroll(Query Squery. Searchablelstring $model): Elastica\Scroll{...}* doaram searchable strino smode urindex usaoe of model 1s deprecateddreturn Lozucollection<int. Document>208820892111public function scrollOverDocuments(Query $query, Searchable|string $model0rIndex): LazyCollection(...}21142118211421192116public function search(Query $query, Searchablelstring $modelOrIndex, ?string $queryName = null): Elastica21172118Datadog::increment( stats: 'jiminny.es.search', sampleRate: 1, ['query' => $queryName ?? "']):2119— 2126$before = microtime( as_float: true);Gnocul+ = Cthic-senentoSoanch/Cauenv GmodolAnTndoyJ_scoanchf)•Caston = microtimed as tloat: true.Datadog:: timing( stat: "jiminny.es.search.time', (int) (($after - $before) * 1000)sampleRate: 1, ['quer'return sresult.= custom.logt scratch_8.json X= laravel.logA SF jiminny@localhost]& console [PROD]A console (EU]A console [STAGING]"hits" :?!115 V.78:0"Usen" : ""conference record_ preference" : 1,"id_string" :"240y8d00-ytoa-45b2-a0/s-sbaue418oyct""[URL_WITH_CREDENTIALS] SWF-1.6r.nl.W Windsurf Toams 2118.20 UTF.82 spaces No JSON schema...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35456
|
1319
|
56
|
2026-05-13T12:29:00.062046+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675340062_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
8043719072324535154
|
-8628527368849355612
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
iTerm2ShellEditViewSessio Project: faVsco.js, menu
iTerm2ShellEditViewSessionScriptsProfilesWindowHelp> 0 llec2-user@ip-10-30-129-190:~883-zshSprint Review - in 32 mA100% C78• Wed 13 May 15:28:59181DOCKER₴61DEV (docker)982APP (-zsh)84screenpipe"-885Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
35455
|
NULL
|
NULL
|
NULL
|
|
35455
|
1319
|
55
|
2026-05-13T12:28:57.641508+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675337641_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35454
|
1319
|
54
|
2026-05-13T12:28:54.926677+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675334926_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-6177495030006717392
|
-7881077389668029571
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes...
|
35452
|
NULL
|
NULL
|
NULL
|
|
35453
|
1320
|
76
|
2026-05-13T12:28:52.921462+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675332921_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"bounds":{"left":0.6988032,"top":0.10055866,"width":0.011303191,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"bounds":{"left":0.71210104,"top":0.10055866,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7237367,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.73105055,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
35451
|
NULL
|
NULL
|
NULL
|
|
35452
|
1319
|
53
|
2026-05-13T12:28:52.898888+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675332898_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35451
|
1320
|
75
|
2026-05-13T12:28:50.496696+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675330496_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
8043719072324535154
|
-8628527368849355612
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
PhostormVIewINavigarecode Project: faVsco.js, menu
PhostormVIewINavigarecodeKeractorFV faVsco.js°9 JY-20891-improveProledeyC) CreateTeam.onp(C) UserinvitationDlo.ong© MailboxController.phpModelFiller• D Servicesearch.onpC clientonp0 EloquentD EncodingEncryptionDESW FakenFeatureFlagsW FFMpealFllesvstemla GeckoGongD GuzzleHttpN KevPointsN KioskiMlivepodD Locks1M Math1M Media Pineline1N MeetinaRotlM MobileSettingsModollD Notification_ NudceC ParagraphBreaker_ Participantspeech0 PartitionedCookiePlavlistProphet_ ProphetAlla Queue• Router7 Saml2MSCIMm SeedenM Sentry1M SerializenD SettingsM SidekickM Slack© TextRelayService.phpcmalllextkelay.onp© Sso.phpossocontroller.ong© TextMessa©)smsmessage.png© SmsLength.php) Textrelav.ohoService/Search.php x © ActivityStatusin.phpclass SearchMA10 . vN TimoMomorvMannor1 TranccrintionC TranscriptionSummaryM Twilidselt "...?private function createSearch(Query $query, Searchable|string $modelOrindex): Elastica\Searchif (request() && request()->has('debug')) {Loa: - infod"dehua' => requesto->aet('dehua')'userUuid' => request(->user?->getIdString ?? 'anonymous','query' => ison_encode(Squery->toArrayOflaas: LISON THROW ON ERROR).'url' => request->fullUrlO,1):recurn schis->culent-SenontoIndoy( indeyName• SmodolhnIndoy inctanconf Connchablo ) SmodolhnIndoy-SaotIndoy() • Smodoln!->createsearch squery)public function scroll(Query Squery. Searchablelstring $model): Elastica\Scroll{...}* doaram searchablestrino smode urindex usaoe of model 1s deprecateddreturn Lozucollection<int. Document>public function scroll0verDocuments(Ouery Sauery. Searchablelstring $model0rIndex): LazvCollection!...?lpublic function search(Query $query, Searchablelstring $modelOrIndex, ?string $queryName = null): ElasticaDatadog::increment( stats: 'jiminny.es.search', sampleRate: 1, ['query' => $queryName ?? "']):$before = microtime( as_float: true);Gnocul+ = Sthic-scnentoSoanch/Cauenv GmodolAnTndeyJ_scoanchf)•Caston = microtimed as tloat: true.Datadog:: timing( stat: "jiminny.es.search.time', (int) (($after - $before) * 1000)sampleRate: 1, ['querreturn sresult.= custom.logt scratch_8.json X= laravel.logA SF jiminny@localhost]& ho_local Uiminny@localnost& console [PROD]A console (EU]A console [STAGING]"NItS" .1!115 v.78A"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618")"User". 1'email""ulne.kriscensenonaclonbu1lder.com"phoco pach" : "alass4ed-doot-4781-yoty-4ezadsccoчac/avacars/ 24078000-yt6a-4502-ad/s-sbauc4186/ct.pngcountry code" : "GB"conference record preference" : 1.nhttos:medna.aom.naminnv.com/d1a554eb-d6df-4981-95F9-4e2ad5cc04ac/avatans/24098d00-9F62-4"id"name™"conference_record_preference" : 1coftnhone record preterence . c."id_string" : "dla554eb-d6df-4981-95f9-4e2ad3cc04ac""job" : { 7 keys Hceam_1d" : 57gluser id" : 11645113"playbook_id" : 3630"transcription model locale_ id" : null."default lanquage" * "en US"."2022-07-26 17:01:45""2022-08-10 21:47:10"sonint keview • In 32m100% L2• Wed 13 May 15:28:50AskJiminnyReportActivityServiceTest vcascadeTrial Owner Role SeleRetactoring User EmaDashboard Activity De+0 ..7. Debuaaing Stepsh bash*7. Check sif actual ctart time field exicts in EC documenti# 3. Check dashboard date range in browser dev tools# Look for: start date and end date parameters*4. Verlry user ceam membership# Check user 29089's team id matches activity's teamSummarv Flow DiaaramAPT Request Dashboardcontroller)Create Criteria with CONTEXT TEAM INSIGHTS ACTIVITYBuild FilterSet (13 filters)Apply Security Filters (Team, Channel, Privacy)Aoolv ActivitvStatusIn (completed + failed)Aoply TeamInsiahts/ActiviltvRecorded COPTTON_ ALL - NOT APPLIED)ADoLy Daterangerilter 96 davs detault)Build Elasticsearch BoolQueryFyecute Dachboard Query (aetDashboardActivitvlverTime)Filter by tvoe (conference, softohone, softohone-inbound)Filter by Exists(actual start time) ~ CRITICAIAggregate by date histogramPoturn roculte to frontondAsk anvthina (84L)÷ @Code SWF-1.6r.nl .W Windsurf Toams 2118.20 UTF.82 spaces No JSON schema...
|
NULL
|
NULL
|
NULL
|
NULL
|
|
35450
|
1319
|
52
|
2026-05-13T12:28:50.493591+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675330493_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp> 0 llec2-user@ip-10-30-129-190:~883-zshSprint Review - in 32 mA100% C8• Wed 13 May 15:28:50181DOCKER₴61DEV (docker)982APP (-zsh)84ffmpeg885Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
NULL
|
-2959812193595466431
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp> 0 llec2-user@ip-10-30-129-190:~883-zshSprint Review - in 32 mA100% C8• Wed 13 May 15:28:50181DOCKER₴61DEV (docker)982APP (-zsh)84ffmpeg885Last login: Wed May 13 09:16:21 on ttys010Poetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ ssh jiminny-prod-ecs1 -L 7970:vpc-activities7g-t6nxe5qk7zis7pa5i7qlmp3zwm.us-east-2.es.amazonaws.com:80Enter MFA code for arn:aws:iam::438740370364:mfa/[EMAIL]:Warning: Permanently added 'jiminny-prod-ecs1' (ED25519) to the list of known hosts.A newer release of "Amazon Linux" is available.Version 2023.10.20260330:Version 2023.11.20260406:Version 2023.11.20260413:Version 2023.11.20260427:Version 2023.11.20260505:Version 2023.11.20260509:Run "/usr/bin/dnf check-release-update" for full release and version update info#_####_\_#####\\###|\#/v~'Amazon Linux 2023 (ECS Optimized)ec2-user@ip-10-30-129-190:~ (. 26Im/*Fordocumentation,visit [URL_WITH_CREDENTIALS] ~]$ ||...
|
35448
|
NULL
|
NULL
|
NULL
|
|
35449
|
1320
|
74
|
2026-05-13T12:28:45.411120+00:00
|
/Users/lukas/.screenpipe/data/data/2026-05-13/1778 /Users/lukas/.screenpipe/data/data/2026-05-13/1778675325411_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_8.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"on_screen":true,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20891-improve-sms-text-relays, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.08843085,"height":0.025538707},"on_screen":true,"help_text":"Git Branch: JY-20891-improve-sms-text-relays","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"10","depth":4,"bounds":{"left":0.38231382,"top":0.17478053,"width":0.009640957,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.39361703,"top":0.17318435,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.40093085,"top":0.17318435,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","depth":4,"on_screen":true,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Component\\ElasticSearch\\Service;\n\nuse ChaseConey\\LaravelDatadogHelper\\Datadog;\nuse Elastica;\nuse Elastica\\Document;\nuse Elastica\\Query;\nuse Generator;\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Support\\Collection;\nuse Illuminate\\Support\\Facades\\Log;\nuse Illuminate\\Support\\LazyCollection;\nuse Jiminny\\Component\\ElasticSearch\\Client;\nuse Jiminny\\Component\\ElasticSearch\\Contract\\Searchable;\nuse Jiminny\\Component\\ElasticSearch\\ModelFiller;\nuse Jiminny\\Models\\Activity;\n\n/**\n * Class Search\n *\n * @package Jiminny\\Component\\ElasticSearch\\Service\n */\nclass Search\n{\n /**\n * @var Client\n */\n private $client;\n\n /**\n * @var ModelFiller\\Elastica\n */\n private $modelFiller;\n\n public function __construct(Client $client, ModelFiller\\Elastica $modelFiller)\n {\n $this->client = $client;\n $this->modelFiller = $modelFiller;\n }\n\n public function updateDocument(Searchable $model): self\n {\n return $this->updateDocumentCollection($model, new Collection([$model]));\n }\n\n public function updateDocumentCollection(\n Searchable $model,\n Collection $collection,\n int $chunkSize = 10,\n ?callable $callback = null,\n ): self {\n if ($collection->count() === 0) {\n return $this;\n }\n\n $documentType = $this->client->createIndex($model->getIndex());\n\n $collection\n ->chunk($chunkSize)\n ->each(static function (Collection $collection) use ($documentType, $callback): void {\n $documents = $collection->map(static function (Searchable $model): Document {\n return new Document((string) $model->getId(), $model->getIndexableAttributes());\n });\n\n $documentType->addDocuments($documents->all());\n\n if ($callback !== null) {\n $callback($collection, $documents);\n }\n\n gc_collect_cycles();\n });\n\n return $this;\n }\n\n private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\\Search\n {\n if (request() && request()->has('debug')) {\n Log::info('Debug ES query: ', [\n 'debug' => request()->get('debug'),\n 'userId' => request()->user()?->id ?? 'anonymous',\n 'userUuid' => request()->user()?->getIdString() ?? 'anonymous',\n 'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),\n 'url' => request()->fullUrl(),\n ]);\n }\n\n return $this->client\n ->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)\n ->createSearch($query);\n }\n\n public function scroll(Query $query, Searchable|string $model): Elastica\\Scroll\n {\n return new Elastica\\Scroll($this->createSearch($query, $model));\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n *\n * @return LazyCollection<int, Document>\n */\n public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection\n {\n return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {\n foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {\n foreach ($resultSet->getDocuments() as $document) {\n yield $document;\n }\n }\n });\n }\n\n /**\n * @param Searchable|string $modelOrIndex usage of model is deprecated\n */\n public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\\ResultSet\n {\n Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);\n\n $before = microtime(true);\n\n $result = $this->createSearch($query, $modelOrIndex)->search();\n\n $after = microtime(true);\n\n Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);\n\n return $result;\n }\n\n /**\n * @TODO use LazyCollection\n *\n * @return Collection<int, Activity>\n */\n public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection\n {\n return $this\n ->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)\n ->collect();\n }\n\n /**\n * @return array{totalHits: int, results: Collection<int, Activity>}\n */\n public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array\n {\n $search = $this->search($query, $model, $queryName);\n\n /**\n * @TODO Use value-object instead.\n */\n return [\n 'totalHits' => $search->getTotalHits(),\n 'results' => $this\n ->hydrateCollection($search->getDocuments(), $model)\n ->collect(),\n ];\n }\n\n private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection\n {\n return LazyCollection::make($collection)\n ->map(function (Document $document) use ($model): Searchable {\n return $this->hydrateModel($document, $model);\n });\n }\n\n private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable\n {\n $attributes = $document->getData();\n $attributes['id'] = $document->getId();\n\n /** @var Searchable&Model */\n return $this->modelFiller->newFromBuilderRecursive($model, $attributes);\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"115","depth":4,"bounds":{"left":0.6988032,"top":0.10055866,"width":0.011303191,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXStaticText","text":"78","depth":4,"bounds":{"left":0.71210104,"top":0.10055866,"width":0.009973404,"height":0.015163607},"on_screen":true,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.7237367,"top":0.09896249,"width":0.00731383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.73105055,"top":0.09896249,"width":0.006981383,"height":0.018355945},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","depth":4,"on_screen":true,"value":"{\n \"took\" : 896,\n \"timed_out\" : false,\n \"_shards\" : {\n \"total\" : 14,\n \"successful\" : 14,\n \"skipped\" : 0,\n \"failed\" : 0\n },\n \"hits\" : {\n \"total\" : {\n \"value\" : 1,\n \"relation\" : \"eq\"\n },\n \"max_score\" : 1.0,\n \"hits\" : [\n {\n \"_index\" : \"activities\",\n \"_type\" : \"_doc\",\n \"_id\" : \"79763436\",\n \"_score\" : 1.0,\n \"_source\" : {\n \"type\" : \"conference\",\n \"language\" : \"en_GB\",\n \"duration\" : 2245,\n \"status\" : \"failed\",\n \"on_air\" : 5,\n \"calendar_event_id\" : 25540483,\n \"log_reminder_sent_at\" : null,\n \"is_internal\" : false,\n \"is_private\" : false,\n \"is_instant_invite\" : false,\n \"average_score\" : null,\n \"title\" : \"SamLockwood,Brand Response<> Line, NationBuilder\",\n \"description\" : \"\"\"Line Kristensen is inviting you to a scheduled Zoom meeting.\n\nTopic: SamLockwood,Brand Response<> Line, NationBuilder\nTime: May 12, 2026 02:15 PM London\nJoin Zoom Meeting\nhttps://nationbuilder.zoom.us/j/82092948046\n\nMeeting chat link\nhttps://nationbuilder.zoom.us/launch/jc/82092948046\n\nMeeting ID: 820 9294 8046\n\n---\n\nOne tap mobile\n+13092053325,,82092948046# US\n+13126266799,,82092948046# US (Chicago)\n\n---\n\nJoin by SIP\n• 82092948046@zoomcrc.com\n\nJoin instructions\nhttps://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4\n\n<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href=\"https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1\">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>\"\"\",\n \"scheduled_start_time\" : \"2026-05-12 13:15:00\",\n \"scheduled_end_time\" : \"2026-05-12 13:51:33\",\n \"actual_start_time\" : \"2026-05-12 13:14:08\",\n \"actual_end_time\" : \"2026-05-12 13:51:33\",\n \"id_string\" : \"67cebfc2-ed56-44a2-8c68-7a0286ed8618\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n },\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"roles\" : [\n {\n \"id\" : 5,\n \"name\" : \"recorder\"\n }\n ],\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n },\n \"lead\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\"\n },\n \"data\" : [ ]\n },\n \"opportunity\" : null,\n \"transcription\" : {\n \"id\" : 12509037,\n \"id_string\" : \"26c06d16-40df-4a00-9551-2ccd03f68efa\",\n \"status\" : \"consumer ready\",\n \"segment\" : [\n {\n \"startsAt\" : 97.805,\n \"endsAt\" : 98.278,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Hey, Rachel.\",\n \"en\" : \"Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 103.517,\n \"endsAt\" : 104.69,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena, how are you?\",\n \"en\" : \"Hey, Leena, how are you?\"\n }\n },\n {\n \"startsAt\" : 105.461,\n \"endsAt\" : 108.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I'm all right. I'm sorry for all of the back and forth.\",\n \"en\" : \"I'm all right. I'm sorry for all of the back and forth.\"\n }\n },\n {\n \"startsAt\" : 108.512,\n \"endsAt\" : 115.371,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\",\n \"en\" : \"It's okay. They really, they want to get all the answers but not give us, not give us anything.\"\n }\n },\n {\n \"startsAt\" : 115.949,\n \"endsAt\" : 117.186,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Hi, Sam.\",\n \"en\" : \"Yeah. Hi, Sam.\"\n }\n },\n {\n \"startsAt\" : 117.877,\n \"endsAt\" : 119.355,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Hey, Leena. Hey, Rachel.\",\n \"en\" : \"Hey, Leena. Hey, Rachel.\"\n }\n },\n {\n \"startsAt\" : 119.58,\n \"endsAt\" : 121.154,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Hey, Sam. Nice to see you.\",\n \"en\" : \"Hey, Sam. Nice to see you.\"\n }\n },\n {\n \"startsAt\" : 121.893,\n \"endsAt\" : 122.294,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"You too.\",\n \"en\" : \"You too.\"\n }\n },\n {\n \"startsAt\" : 123.451,\n \"endsAt\" : 129.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"en\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\"\n }\n },\n {\n \"startsAt\" : 130.24,\n \"endsAt\" : 138.079,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\",\n \"en\" : \"We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.\"\n }\n },\n {\n \"startsAt\" : 139.794,\n \"endsAt\" : 152.987,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"en\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\"\n }\n },\n {\n \"startsAt\" : 153.099,\n \"endsAt\" : 160.786,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"en\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\"\n }\n },\n {\n \"startsAt\" : 160.883,\n \"endsAt\" : 169.42,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"en\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\"\n }\n },\n {\n \"startsAt\" : 170.566,\n \"endsAt\" : 180.56,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"en\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\"\n }\n },\n {\n \"startsAt\" : 181.765,\n \"endsAt\" : 182.247,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good.\",\n \"en\" : \"Sounds good.\"\n }\n },\n {\n \"startsAt\" : 182.312,\n \"endsAt\" : 182.472,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 183.115,\n \"endsAt\" : 196.422,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"en\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\"\n }\n },\n {\n \"startsAt\" : 197.996,\n \"endsAt\" : 205.962,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"en\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\"\n }\n },\n {\n \"startsAt\" : 206.026,\n \"endsAt\" : 223.679,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"en\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\"\n }\n },\n {\n \"startsAt\" : 224.304,\n \"endsAt\" : 235.697,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"en\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\"\n }\n },\n {\n \"startsAt\" : 235.761,\n \"endsAt\" : 236.322,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"See you, Nana.\",\n \"en\" : \"See you, Nana.\"\n }\n },\n {\n \"startsAt\" : 236.45,\n \"endsAt\" : 260.346,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"en\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\"\n }\n },\n {\n \"startsAt\" : 260.443,\n \"endsAt\" : 271.407,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"en\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\"\n }\n },\n {\n \"startsAt\" : 272.145,\n \"endsAt\" : 283.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"en\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\"\n }\n },\n {\n \"startsAt\" : 284.017,\n \"endsAt\" : 300.185,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"en\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\"\n }\n },\n {\n \"startsAt\" : 306.65,\n \"endsAt\" : 326.537,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"en\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\"\n }\n },\n {\n \"startsAt\" : 327.082,\n \"endsAt\" : 336.292,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"en\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\"\n }\n },\n {\n \"startsAt\" : 336.645,\n \"endsAt\" : 348.412,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\",\n \"en\" : \"Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.\"\n }\n },\n {\n \"startsAt\" : 348.525,\n \"endsAt\" : 358.93,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"en\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\"\n }\n },\n {\n \"startsAt\" : 359.605,\n \"endsAt\" : 360.488,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"That's good, that's cool.\",\n \"en\" : \"That's good, that's cool.\"\n }\n },\n {\n \"startsAt\" : 361.276,\n \"endsAt\" : 384.155,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"en\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\"\n }\n },\n {\n \"startsAt\" : 384.894,\n \"endsAt\" : 397.287,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\",\n \"en\" : \"Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.\"\n }\n },\n {\n \"startsAt\" : 397.913,\n \"endsAt\" : 411.189,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\",\n \"en\" : \"I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.\"\n }\n },\n {\n \"startsAt\" : 412.526,\n \"endsAt\" : 419.036,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\",\n \"en\" : \"And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.\"\n }\n },\n {\n \"startsAt\" : 422.457,\n \"endsAt\" : 440.161,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"en\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\"\n }\n },\n {\n \"startsAt\" : 442.361,\n \"endsAt\" : 461.645,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"en\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\"\n }\n },\n {\n \"startsAt\" : 468.461,\n \"endsAt\" : 485.052,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\",\n \"en\" : \"And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.\"\n }\n },\n {\n \"startsAt\" : 485.917,\n \"endsAt\" : 499.373,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"en\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\"\n }\n },\n {\n \"startsAt\" : 500.111,\n \"endsAt\" : 509.15,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"en\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\"\n }\n },\n {\n \"startsAt\" : 510.547,\n \"endsAt\" : 521.881,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\",\n \"en\" : \"Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.\"\n }\n },\n {\n \"startsAt\" : 522.667,\n \"endsAt\" : 536.838,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"en\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\"\n }\n },\n {\n \"startsAt\" : 537.111,\n \"endsAt\" : 547.627,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"en\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\"\n }\n },\n {\n \"startsAt\" : 548.799,\n \"endsAt\" : 563.185,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\",\n \"en\" : \"And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.\"\n }\n },\n {\n \"startsAt\" : 563.282,\n \"endsAt\" : 576.769,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"en\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\"\n }\n },\n {\n \"startsAt\" : 577.251,\n \"endsAt\" : 586.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"en\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\"\n }\n },\n {\n \"startsAt\" : 586.467,\n \"endsAt\" : 591.606,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\",\n \"en\" : \"We have some that we recommend in the US, but I don't think for UK we have any. No.\"\n }\n },\n {\n \"startsAt\" : 591.862,\n \"endsAt\" : 612.206,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"en\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\"\n }\n },\n {\n \"startsAt\" : 612.399,\n \"endsAt\" : 623.221,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"en\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\"\n }\n },\n {\n \"startsAt\" : 625.147,\n \"endsAt\" : 632.107,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\",\n \"en\" : \"Yeah, I think it— looking at this, I think it all would be covered by our tool.\"\n }\n },\n {\n \"startsAt\" : 635.17,\n \"endsAt\" : 649.988,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"en\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\"\n }\n },\n {\n \"startsAt\" : 650.902,\n \"endsAt\" : 668.773,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"en\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\"\n }\n },\n {\n \"startsAt\" : 668.821,\n \"endsAt\" : 686.258,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"en\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\"\n }\n },\n {\n \"startsAt\" : 686.436,\n \"endsAt\" : 698.675,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"en\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\"\n }\n },\n {\n \"startsAt\" : 702.504,\n \"endsAt\" : 707.223,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think would make sense and also would save them quite significant costs.\",\n \"en\" : \"I think would make sense and also would save them quite significant costs.\"\n }\n },\n {\n \"startsAt\" : 709.868,\n \"endsAt\" : 725.774,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"en\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\"\n }\n },\n {\n \"startsAt\" : 729.963,\n \"endsAt\" : 748.192,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"en\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\"\n }\n },\n {\n \"startsAt\" : 748.61,\n \"endsAt\" : 762.328,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"en\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\"\n }\n },\n {\n \"startsAt\" : 768.73,\n \"endsAt\" : 790.718,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"en\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\"\n }\n },\n {\n \"startsAt\" : 792.725,\n \"endsAt\" : 805.858,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\",\n \"en\" : \"I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.\"\n }\n },\n {\n \"startsAt\" : 807.333,\n \"endsAt\" : 822.047,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"en\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\"\n }\n },\n {\n \"startsAt\" : 822.159,\n \"endsAt\" : 844.409,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"en\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\"\n }\n },\n {\n \"startsAt\" : 847.991,\n \"endsAt\" : 852.392,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"en\" : \"I think it's more— to me, the question is how— where is that information coming from?\"\n }\n },\n {\n \"startsAt\" : 855.219,\n \"endsAt\" : 856.103,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, do they—\",\n \"en\" : \"Yeah, do they—\"\n }\n },\n {\n \"startsAt\" : 856.247,\n \"endsAt\" : 863.213,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"en\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\"\n }\n },\n {\n \"startsAt\" : 864.047,\n \"endsAt\" : 881.1,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"en\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\"\n }\n },\n {\n \"startsAt\" : 881.917,\n \"endsAt\" : 893.706,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"en\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\"\n }\n },\n {\n \"startsAt\" : 896.422,\n \"endsAt\" : 900.76,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"en\" : \"Yeah, I mean, I think there's several ways to track that data.\"\n }\n },\n {\n \"startsAt\" : 901.162,\n \"endsAt\" : 916.056,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"en\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\"\n }\n },\n {\n \"startsAt\" : 917.083,\n \"endsAt\" : 933.735,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"en\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\"\n }\n },\n {\n \"startsAt\" : 936.174,\n \"endsAt\" : 947.288,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"en\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\"\n }\n },\n {\n \"startsAt\" : 948.138,\n \"endsAt\" : 965.419,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"en\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\"\n }\n },\n {\n \"startsAt\" : 966.702,\n \"endsAt\" : 980.245,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"en\" : \"Yeah, it's a good point. I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\"\n }\n },\n {\n \"startsAt\" : 980.662,\n \"endsAt\" : 1004.308,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"en\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\"\n }\n },\n {\n \"startsAt\" : 1004.965,\n \"endsAt\" : 1005.847,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, but yeah.\",\n \"en\" : \"Um, but yeah.\"\n }\n },\n {\n \"startsAt\" : 1006.728,\n \"endsAt\" : 1019.681,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"en\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\"\n }\n },\n {\n \"startsAt\" : 1020.274,\n \"endsAt\" : 1035.076,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"en\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\"\n }\n },\n {\n \"startsAt\" : 1036.231,\n \"endsAt\" : 1046.639,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"en\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\"\n }\n },\n {\n \"startsAt\" : 1048.354,\n \"endsAt\" : 1054.491,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"en\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\"\n }\n },\n {\n \"startsAt\" : 1055.484,\n \"endsAt\" : 1065.227,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"en\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\"\n }\n },\n {\n \"startsAt\" : 1067.102,\n \"endsAt\" : 1073.287,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"en\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\"\n }\n },\n {\n \"startsAt\" : 1073.832,\n \"endsAt\" : 1088.476,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"en\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\"\n }\n },\n {\n \"startsAt\" : 1090.837,\n \"endsAt\" : 1094.803,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"en\" : \"Um, even if it was elsewhere, I think that could get really messy.\"\n }\n },\n {\n \"startsAt\" : 1097.1,\n \"endsAt\" : 1110.142,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\",\n \"en\" : \"Yeah, the only way I've seen it done well is, like, at a smaller scale that's, like, manageable person by person, and it's just like This isn't that type of project. This all needs to be pretty automated because it's such a big scale.\"\n }\n },\n {\n \"startsAt\" : 1110.991,\n \"endsAt\" : 1127.43,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"en\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\"\n }\n },\n {\n \"startsAt\" : 1129.561,\n \"endsAt\" : 1145.417,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"en\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\"\n }\n },\n {\n \"startsAt\" : 1148.435,\n \"endsAt\" : 1151.052,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Not that I remember, but maybe Rachel does.\",\n \"en\" : \"Not that I remember, but maybe Rachel does.\"\n }\n },\n {\n \"startsAt\" : 1152.93,\n \"endsAt\" : 1166.674,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"en\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\"\n }\n },\n {\n \"startsAt\" : 1166.738,\n \"endsAt\" : 1174.381,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"en\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\"\n }\n },\n {\n \"startsAt\" : 1175.874,\n \"endsAt\" : 1190.743,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"en\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\"\n }\n },\n {\n \"startsAt\" : 1191.867,\n \"endsAt\" : 1204.15,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"en\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\"\n }\n },\n {\n \"startsAt\" : 1205.177,\n \"endsAt\" : 1229.27,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"en\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\"\n }\n },\n {\n \"startsAt\" : 1230.073,\n \"endsAt\" : 1234.747,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"en\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\"\n }\n },\n {\n \"startsAt\" : 1234.827,\n \"endsAt\" : 1248.793,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"en\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\"\n }\n },\n {\n \"startsAt\" : 1250.784,\n \"endsAt\" : 1258.136,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"en\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\"\n }\n },\n {\n \"startsAt\" : 1258.906,\n \"endsAt\" : 1273.532,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"en\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\"\n }\n },\n {\n \"startsAt\" : 1281.705,\n \"endsAt\" : 1300.747,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"en\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\"\n }\n },\n {\n \"startsAt\" : 1302.657,\n \"endsAt\" : 1305.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Any thoughts, Sam?\",\n \"en\" : \"Yeah. Any thoughts, Sam?\"\n }\n },\n {\n \"startsAt\" : 1306.896,\n \"endsAt\" : 1322.148,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\",\n \"en\" : \"No, I think it looks— it looks okay. I'm just looking at the key requirements now. So academic history across multiple degrees. Okay, this is repeating the same stuff, right? Yeah, okay.\"\n }\n },\n {\n \"startsAt\" : 1323.031,\n \"endsAt\" : 1341.593,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"en\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\"\n }\n },\n {\n \"startsAt\" : 1345.061,\n \"endsAt\" : 1348.756,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's looking at grant giving and management.\",\n \"en\" : \"So it's looking at grant giving and management.\"\n }\n },\n {\n \"startsAt\" : 1360.452,\n \"endsAt\" : 1383.149,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"en\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\"\n }\n },\n {\n \"startsAt\" : 1386.554,\n \"endsAt\" : 1403.711,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"en\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\"\n }\n },\n {\n \"startsAt\" : 1405.266,\n \"endsAt\" : 1421.521,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"en\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\"\n }\n },\n {\n \"startsAt\" : 1421.954,\n \"endsAt\" : 1430.531,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\",\n \"en\" : \"So when they're saying grant, okay, grant giving application. So this is grants, this is former alumni or students applying to them for grants. Grants, basically. Okay.\"\n }\n },\n {\n \"startsAt\" : 1430.643,\n \"endsAt\" : 1447.536,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\",\n \"en\" : \"Yeah, it's the kind of thing with several of these where it's like there are ways to do this in nationbuilder, but most folks who have a really complex grant program don't do it in nationbuilder.\"\n }\n },\n {\n \"startsAt\" : 1447.616,\n \"endsAt\" : 1455.509,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\",\n \"en\" : \"They use like— there are specific grant management programs or like a more specific project management, um, system.\"\n }\n },\n {\n \"startsAt\" : 1456.729,\n \"endsAt\" : 1463.227,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\",\n \"en\" : \"I can take this away and just have a bit of a look at what grants they give, given it's the Open University.\"\n }\n },\n {\n \"startsAt\" : 1463.307,\n \"endsAt\" : 1474.764,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"en\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\"\n }\n },\n {\n \"startsAt\" : 1475.775,\n \"endsAt\" : 1491.071,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"en\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\"\n }\n },\n {\n \"startsAt\" : 1491.263,\n \"endsAt\" : 1503.193,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"en\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\"\n }\n },\n {\n \"startsAt\" : 1503.193,\n \"endsAt\" : 1505.265,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that should be— that should all be fine.\",\n \"en\" : \"Yeah, that should be— that should all be fine.\"\n }\n },\n {\n \"startsAt\" : 1505.361,\n \"endsAt\" : 1505.554,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yep.\",\n \"en\" : \"Yep.\"\n }\n },\n {\n \"startsAt\" : 1507.047,\n \"endsAt\" : 1524.304,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"en\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\"\n }\n },\n {\n \"startsAt\" : 1524.946,\n \"endsAt\" : 1527.271,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"That's maybe the one thing, quite granular.\",\n \"en\" : \"That's maybe the one thing, quite granular.\"\n }\n },\n {\n \"startsAt\" : 1527.415,\n \"endsAt\" : 1543.641,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"en\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\"\n }\n },\n {\n \"startsAt\" : 1543.705,\n \"endsAt\" : 1550.887,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\",\n \"en\" : \"But like, it's not quite as easy as— I mean, you're going to look at everything in one currency.\"\n }\n },\n {\n \"startsAt\" : 1552.121,\n \"endsAt\" : 1552.362,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1552.442,\n \"endsAt\" : 1554.254,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And send emails.\",\n \"en\" : \"And send emails.\"\n }\n },\n {\n \"startsAt\" : 1555.151,\n \"endsAt\" : 1569.896,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\",\n \"en\" : \"Like, it can be complicated for sending emails and things because then you have to use Liquid in order to have things come through in the correct currency, but I don't know how much, like, what is their percentage of non-UK currencies.\"\n }\n },\n {\n \"startsAt\" : 1572.176,\n \"endsAt\" : 1584.957,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"en\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\"\n }\n },\n {\n \"startsAt\" : 1585.021,\n \"endsAt\" : 1598.91,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"en\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\"\n }\n },\n {\n \"startsAt\" : 1599.392,\n \"endsAt\" : 1611.177,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"en\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\"\n }\n },\n {\n \"startsAt\" : 1611.434,\n \"endsAt\" : 1627.968,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"en\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\"\n }\n },\n {\n \"startsAt\" : 1628.032,\n \"endsAt\" : 1630.244,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I mean, you are the expert at the other end.\",\n \"en\" : \"I mean, you are the expert at the other end.\"\n }\n },\n {\n \"startsAt\" : 1631.479,\n \"endsAt\" : 1641.901,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"en\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\"\n }\n },\n {\n \"startsAt\" : 1643.488,\n \"endsAt\" : 1656.413,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\",\n \"en\" : \"And I think, yeah, there's a, I mean, in an ideal world, you would have, yeah, be able to switch currency in reporting more easily, but there's ways of doing it. There's ways of getting the reporting out of SmartRace as well.\"\n }\n },\n {\n \"startsAt\" : 1656.509,\n \"endsAt\" : 1659.139,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So it's, there's lots of options for them, I think.\",\n \"en\" : \"So it's, there's lots of options for them, I think.\"\n }\n },\n {\n \"startsAt\" : 1659.844,\n \"endsAt\" : 1678.315,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"en\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\"\n }\n },\n {\n \"startsAt\" : 1680.868,\n \"endsAt\" : 1696.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"en\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\"\n }\n },\n {\n \"startsAt\" : 1697.489,\n \"endsAt\" : 1716.404,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"en\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\"\n }\n },\n {\n \"startsAt\" : 1716.773,\n \"endsAt\" : 1726.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"en\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\"\n }\n },\n {\n \"startsAt\" : 1727.506,\n \"endsAt\" : 1744.657,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"en\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\"\n }\n },\n {\n \"startsAt\" : 1745.09,\n \"endsAt\" : 1764.834,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"en\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\"\n }\n },\n {\n \"startsAt\" : 1768.696,\n \"endsAt\" : 1768.808,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Yeah.\",\n \"en\" : \"Yeah.\"\n }\n },\n {\n \"startsAt\" : 1769.625,\n \"endsAt\" : 1778.947,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"en\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\"\n }\n },\n {\n \"startsAt\" : 1780.891,\n \"endsAt\" : 1787.64,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"en\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\"\n }\n },\n {\n \"startsAt\" : 1788.154,\n \"endsAt\" : 1788.7,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Mm-hmm.\",\n \"en\" : \"Mm-hmm.\"\n }\n },\n {\n \"startsAt\" : 1789.086,\n \"endsAt\" : 1799.321,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"en\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\"\n }\n },\n {\n \"startsAt\" : 1800.35,\n \"endsAt\" : 1809.484,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\",\n \"en\" : \"Yeah. That makes sense. OK, they've got all kinds of other gateways. Yeah, OK, so mixed up.\"\n }\n },\n {\n \"startsAt\" : 1810.429,\n \"endsAt\" : 1823.488,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"en\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\"\n }\n },\n {\n \"startsAt\" : 1824.209,\n \"endsAt\" : 1825.587,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, cool.\",\n \"en\" : \"Yeah, cool.\"\n }\n },\n {\n \"startsAt\" : 1826.148,\n \"endsAt\" : 1835.455,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"en\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\"\n }\n },\n {\n \"startsAt\" : 1835.535,\n \"endsAt\" : 1843.724,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"en\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\"\n }\n },\n {\n \"startsAt\" : 1844.687,\n \"endsAt\" : 1860.748,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"en\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\"\n }\n },\n {\n \"startsAt\" : 1862.049,\n \"endsAt\" : 1873.65,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"en\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\"\n }\n },\n {\n \"startsAt\" : 1873.762,\n \"endsAt\" : 1877.763,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"en\" : \"Would it be nationbuilder or would we do something with Insights?\"\n }\n },\n {\n \"startsAt\" : 1879.788,\n \"endsAt\" : 1890.397,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"en\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\"\n }\n },\n {\n \"startsAt\" : 1890.99,\n \"endsAt\" : 1900.667,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"en\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\"\n }\n },\n {\n \"startsAt\" : 1900.715,\n \"endsAt\" : 1908.999,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"en\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\"\n }\n },\n {\n \"startsAt\" : 1909.512,\n \"endsAt\" : 1917.501,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"en\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\"\n }\n },\n {\n \"startsAt\" : 1917.597,\n \"endsAt\" : 1935.196,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"en\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\"\n }\n },\n {\n \"startsAt\" : 1936.688,\n \"endsAt\" : 1948.425,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"en\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\"\n }\n },\n {\n \"startsAt\" : 1948.489,\n \"endsAt\" : 1961.783,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"en\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\"\n }\n },\n {\n \"startsAt\" : 1963.194,\n \"endsAt\" : 1966.462,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Sam, anything on that?\",\n \"en\" : \"Sam, anything on that?\"\n }\n },\n {\n \"startsAt\" : 1966.526,\n \"endsAt\" : 1984.791,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"en\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\"\n }\n },\n {\n \"startsAt\" : 1985.608,\n \"endsAt\" : 1993.51,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\",\n \"en\" : \"So yeah, I guess the question, that is the main question because there's a lot of points here that could be big projects. In itself.\"\n }\n },\n {\n \"startsAt\" : 1993.767,\n \"endsAt\" : 2012.143,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"en\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\"\n }\n },\n {\n \"startsAt\" : 2012.545,\n \"endsAt\" : 2026.616,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"en\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\"\n }\n },\n {\n \"startsAt\" : 2027.481,\n \"endsAt\" : 2031.807,\n \"participantId\" : 243573434,\n \"speakerId\" : 2,\n \"transcript\" : {\n \"raw\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"en\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\"\n }\n },\n {\n \"startsAt\" : 2032.352,\n \"endsAt\" : 2048.695,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"en\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\"\n }\n },\n {\n \"startsAt\" : 2049.576,\n \"endsAt\" : 2059.13,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"en\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\"\n }\n },\n {\n \"startsAt\" : 2059.211,\n \"endsAt\" : 2076.908,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"en\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\"\n }\n },\n {\n \"startsAt\" : 2077.148,\n \"endsAt\" : 2082.534,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"en\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\"\n }\n },\n {\n \"startsAt\" : 2084.2,\n \"endsAt\" : 2088.495,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\",\n \"en\" : \"Um, yeah, I should have— it has to be a quick 5 minutes for me, but yes.\"\n }\n },\n {\n \"startsAt\" : 2089.264,\n \"endsAt\" : 2103.382,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"en\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\"\n }\n },\n {\n \"startsAt\" : 2103.926,\n \"endsAt\" : 2118.635,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"en\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\"\n }\n },\n {\n \"startsAt\" : 2120.288,\n \"endsAt\" : 2135.899,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\",\n \"en\" : \"Yeah, that sounds good. So yeah, if you, if you guys do your first pass, and then if there's specific questions that you want that you flag for me to respond to, or you know is like in our area, then I can, I can add those.\"\n }\n },\n {\n \"startsAt\" : 2136.637,\n \"endsAt\" : 2141.542,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\",\n \"en\" : \"And then we could do another session maybe on just like consolidating the answers and making sure that it's clear.\"\n }\n },\n {\n \"startsAt\" : 2142.183,\n \"endsAt\" : 2151.529,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"en\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\"\n }\n },\n {\n \"startsAt\" : 2151.817,\n \"endsAt\" : 2160.057,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"en\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\"\n }\n },\n {\n \"startsAt\" : 2161.403,\n \"endsAt\" : 2174.096,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"en\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\"\n }\n },\n {\n \"startsAt\" : 2174.883,\n \"endsAt\" : 2189.484,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"en\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\"\n }\n },\n {\n \"startsAt\" : 2190.705,\n \"endsAt\" : 2204.248,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"en\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\"\n }\n },\n {\n \"startsAt\" : 2204.505,\n \"endsAt\" : 2206.541,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, but this is basically what they're after.\",\n \"en\" : \"Um, but this is basically what they're after.\"\n }\n },\n {\n \"startsAt\" : 2207.472,\n \"endsAt\" : 2215.33,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"en\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\"\n }\n },\n {\n \"startsAt\" : 2215.971,\n \"endsAt\" : 2220.205,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\",\n \"en\" : \"Um, and also very clear in the documentation, it won't be used for any further phases.\"\n }\n },\n {\n \"startsAt\" : 2220.477,\n \"endsAt\" : 2231.604,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"en\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\"\n }\n },\n {\n \"startsAt\" : 2232.582,\n \"endsAt\" : 2233.993,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Okay, cool. Sounds good.\",\n \"en\" : \"Okay, cool. Sounds good.\"\n }\n },\n {\n \"startsAt\" : 2234.041,\n \"endsAt\" : 2240.678,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"en\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\"\n }\n },\n {\n \"startsAt\" : 2242.025,\n \"endsAt\" : 2243.772,\n \"participantId\" : 243706384,\n \"speakerId\" : 1,\n \"transcript\" : {\n \"raw\" : \"Perfect. Thanks. Good to see you both.\",\n \"en\" : \"Perfect. Thanks. Good to see you both.\"\n }\n },\n {\n \"startsAt\" : 2244.285,\n \"endsAt\" : 2245.087,\n \"participantId\" : 243166656,\n \"speakerId\" : 0,\n \"transcript\" : {\n \"raw\" : \"Good to see you. Bye.\",\n \"en\" : \"Good to see you. Bye.\"\n }\n }\n ]\n },\n \"stats\" : {\n \"duration\" : 2245.0,\n \"talk_duration\" : 996.03,\n \"customer_talk_duration\" : \"291.23\",\n \"longest_user_monologue\" : \"32.37\",\n \"longest_customer_monologue\" : \"33.60\",\n \"interactions\" : 95,\n \"patience_time\" : \"885.48\",\n \"talking_speed\" : \"159.18\",\n \"conversation_switch\" : null,\n \"user_questions\" : 24,\n \"customer_questions\" : 5,\n \"insightful_questions\" : 0,\n \"engaging_questions\" : 11,\n \"created_at\" : \"2026-05-12 13:54:36\",\n \"updated_at\" : \"2026-05-12 13:56:36\",\n \"id_string\" : \"8d2a191d-0963-403c-baeb-c9070b7aa599\",\n \"talk_time_ratio\" : 59.0\n },\n \"tracks\" : [\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"video\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 113650936,\n \"format\" : \"mp4\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:51:54\",\n \"deleted_at\" : null,\n \"id_string\" : \"32726a31-9975-4bd4-8c19-c3d58043358f\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:v:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"audio\",\n \"channels\" : 1,\n \"is_master\" : false,\n \"is_shadow\" : true,\n \"duration\" : \"2245.38\",\n \"status\" : \"available\",\n \"size\" : 26946955,\n \"format\" : \"m4a\",\n \"codecs\" : null,\n \"bitrate\" : null,\n \"resolution\" : null,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:51:39\",\n \"updated_at\" : \"2026-05-12 13:52:24\",\n \"deleted_at\" : null,\n \"id_string\" : \"31a2c847-0e76-4f2b-9f0d-deb105e56c41\",\n \"telephony_provider_id\" : \"82092948046:59p4elqpnc61duknujsmqg8cuo:a:1778591700:575\"\n },\n {\n \"connection_id\" : null,\n \"activity_id\" : 79763436,\n \"participant_id\" : null,\n \"type\" : \"muxed\",\n \"channels\" : 1,\n \"is_master\" : true,\n \"is_shadow\" : false,\n \"duration\" : \"2245.32\",\n \"status\" : \"available\",\n \"size\" : 8103,\n \"format\" : \"m3u8\",\n \"codecs\" : null,\n \"bitrate\" : 507600,\n \"resolution\" : 720,\n \"bill_rate\" : \"0.00\",\n \"start_time\" : \"2026-05-12 13:14:08\",\n \"end_time\" : \"2026-05-12 13:51:33\",\n \"start_offset\" : null,\n \"end_offset\" : null,\n \"parent_track_id\" : null,\n \"created_at\" : \"2026-05-12 13:52:32\",\n \"updated_at\" : \"2026-05-12 13:54:18\",\n \"deleted_at\" : null,\n \"id_string\" : \"6406e20f-c799-442e-a501-ba46bc33ae88\",\n \"telephony_provider_id\" : null\n }\n ],\n \"playlists\" : [ ],\n \"plays\" : [ ],\n \"account\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"36632022860\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Brand Response\",\n \"phone\" : null,\n \"ext\" : null,\n \"industry\" : \"COMPUTER_SOFTWARE\",\n \"domain\" : \"brandresponse.cc\",\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"country_code\" : \"US\",\n \"is_internal\" : 0,\n \"deleted_at\" : null,\n \"created_at\" : \"2025-07-23 03:35:39\",\n \"remotely_created_at\" : \"2024-05-30 04:17:41\",\n \"updated_at\" : \"2026-04-20 13:23:58\",\n \"id_string\" : \"d928d3e8-df0f-40cb-99d8-2759408c3225\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png\",\n \"data\" : [ ]\n },\n \"comments\" : [ ],\n \"coaching_feedbacks\" : [ ],\n \"favorites\" : [ ],\n \"shares\" : [ ],\n \"stage\" : null,\n \"category\" : {\n \"type\" : \"all\",\n \"name\" : \"MI - Ecosystem\",\n \"ai_prompt_description\" : null,\n \"sequence\" : 10,\n \"was_answered\" : true,\n \"is_default\" : false,\n \"created_at\" : \"2022-07-26 16:59:23\",\n \"updated_at\" : \"2022-08-17 23:27:42\",\n \"id_string\" : \"d9613646-66fb-413e-b7b2-99eb25116ee9\"\n },\n \"partner_id\" : \"7ed483d6-f550-4a72-9216-49442257b2c1\",\n \"provider\" : \"zoom-bot\",\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 14:25:19\",\n \"indexed_at\" : \"2026-05-12 14:25:19\",\n \"favorite_count\" : 0,\n \"play_count\" : 0,\n \"share_count\" : 0,\n \"comment_count\" : 0,\n \"source\" : null,\n \"recording_state\" : \"recorded\",\n \"recording_reason_code\" : 32768,\n \"value\" : null,\n \"from_participant_id\" : null,\n \"to_participant_id\" : null,\n \"crm_configuration_id\" : 900,\n \"opportunity_id\" : null,\n \"account_id\" : 16423820,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"stage_id\" : null,\n \"crm_provider_id\" : \"109268884312\",\n \"topic_triggers\" : [\n {\n \"id\" : 476301274,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"duration\" : 1.1700000000000017,\n \"time_in_activity\" : 4.611135857461025,\n \"text\" : \"Hey, Leena, how are you?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cb78cb50-58fa-4b11-a31d-acc2f610fb05\",\n \"definition\" : \"how are you\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"how are you\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301275,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"duration\" : 6.260000000000005,\n \"time_in_activity\" : 5.498886414253898,\n \"text\" : \"So I didn't know when I set this up whether you two already know each other. Have you met before?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301276,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301277,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301278,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301279,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301280,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301281,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301282,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301283,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301284,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301285,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301286,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301287,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301288,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301289,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301290,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301291,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301292,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301293,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301294,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301295,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301296,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301297,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301298,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301299,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301300,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301301,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301302,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301303,\n \"starts_at\" : 1345.06,\n \"ends_at\" : 1348.76,\n \"duration\" : 3.7000000000000455,\n \"time_in_activity\" : 59.91358574610245,\n \"text\" : \"So it's looking at grant giving and management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301304,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301305,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301306,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301307,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301308,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301309,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301310,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301311,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301312,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301313,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301314,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301315,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301316,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301317,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301318,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301319,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301320,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301321,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301322,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301323,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5acce243-1f36-47dc-bd57-16faffa6eb27\",\n \"definition\" : \"so\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"so\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301324,\n \"starts_at\" : 139.79,\n \"ends_at\" : 152.99,\n \"duration\" : 13.200000000000017,\n \"time_in_activity\" : 6.2267260579064585,\n \"text\" : \"Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301325,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7d3006f9-88c2-4a7e-bdd4-2cacb97925d6\",\n \"definition\" : \"paths\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"paths\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301326,\n \"starts_at\" : 153.1,\n \"ends_at\" : 160.79,\n \"duration\" : 7.689999999999998,\n \"time_in_activity\" : 6.819599109131403,\n \"text\" : \"Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301327,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301328,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301329,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301330,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301331,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301332,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301333,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301334,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301335,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301336,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301337,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301338,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301339,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7210aff0-21ce-4abe-b8cc-079159211de3\",\n \"definition\" : \"well\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"well\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301340,\n \"starts_at\" : 160.88,\n \"ends_at\" : 169.42,\n \"duration\" : 8.539999999999992,\n \"time_in_activity\" : 7.166146993318486,\n \"text\" : \"She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301341,\n \"starts_at\" : 170.57,\n \"ends_at\" : 180.56,\n \"duration\" : 9.990000000000009,\n \"time_in_activity\" : 7.597772828507795,\n \"text\" : \"So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301342,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301343,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301344,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301345,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301346,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301347,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301348,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"duration\" : 10.82000000000005,\n \"time_in_activity\" : 27.27839643652561,\n \"text\" : \"I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301349,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301350,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301351,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301352,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301353,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301354,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301355,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301356,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301357,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301358,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"duration\" : 16.440000000000055,\n \"time_in_activity\" : 49.48730512249443,\n \"text\" : \"Yeah. Yeah, because I've seen it done with candidates, which is very different, isn't it? You know, if you're vetting your candidates or candidate applications, but not necessarily the same. Okay, helpful. And then employment record management.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301359,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301360,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301361,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301362,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301363,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301364,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301365,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301366,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301367,\n \"starts_at\" : 1463.31,\n \"ends_at\" : 1474.76,\n \"duration\" : 11.450000000000045,\n \"time_in_activity\" : 65.18084632516704,\n \"text\" : \"I just don't know how big it is because, you know, for your standard universities over here is still not massive, I would say, compared to, you know, scholarships in the US.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301368,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301369,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"duration\" : 17.25,\n \"time_in_activity\" : 67.12917594654789,\n \"text\" : \"Um, globalization, I think the main thing for me is multi-currency, but with SmartRaise, you know, that should be fine. Anything else, Rachel? I suppose time zones can be a bit— in terms of sending times, it's a bit funky.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301370,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301371,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301372,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"duration\" : 17.699999999999818,\n \"time_in_activity\" : 91.72427616926504,\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there? And again, you've got Microsoft 365 and Google Drive. Not familiar with Box in its, you know, but yeah, cool. I'm conscious of everybody's time.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301373,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301374,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301375,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301376,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301377,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301378,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301379,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301380,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8391d7f3-2a3e-42c0-8de6-118dde446371\",\n \"definition\" : \"you know\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"you know\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301381,\n \"starts_at\" : 183.12,\n \"ends_at\" : 196.42,\n \"duration\" : 13.299999999999983,\n \"time_in_activity\" : 8.156792873051225,\n \"text\" : \"Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d8b1d52e-39e0-466e-b055-d75b003e97ca\",\n \"definition\" : \"deadline\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deadline\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301382,\n \"starts_at\" : 198.0,\n \"ends_at\" : 205.96,\n \"duration\" : 7.960000000000008,\n \"time_in_activity\" : 8.819599109131403,\n \"text\" : \"And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301383,\n \"starts_at\" : 272.15,\n \"ends_at\" : 283.97,\n \"duration\" : 11.82000000000005,\n \"time_in_activity\" : 12.122494432071267,\n \"text\" : \"But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301384,\n \"starts_at\" : 306.65,\n \"ends_at\" : 326.54,\n \"duration\" : 19.890000000000043,\n \"time_in_activity\" : 13.65924276169265,\n \"text\" : \"So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301385,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301386,\n \"starts_at\" : 485.92,\n \"ends_at\" : 499.37,\n \"duration\" : 13.449999999999989,\n \"time_in_activity\" : 21.6445434298441,\n \"text\" : \"Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301387,\n \"starts_at\" : 500.11,\n \"ends_at\" : 509.15,\n \"duration\" : 9.039999999999964,\n \"time_in_activity\" : 22.276614699331848,\n \"text\" : \"Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301388,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301389,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301390,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301391,\n \"starts_at\" : 577.25,\n \"ends_at\" : 586.42,\n \"duration\" : 9.169999999999959,\n \"time_in_activity\" : 25.71269487750557,\n \"text\" : \"So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301392,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301393,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301394,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301395,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301396,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301397,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301398,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301399,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301400,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301401,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"duration\" : 21.99000000000001,\n \"time_in_activity\" : 34.24187082405345,\n \"text\" : \"Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301402,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301403,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301404,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301405,\n \"starts_at\" : 881.92,\n \"ends_at\" : 893.71,\n \"duration\" : 11.790000000000077,\n \"time_in_activity\" : 39.283741648106904,\n \"text\" : \"So I assume that's what happens probably every year, and even if their students opted in, because like Open University is big I'd imagine it would be a transfer a couple of times a year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301406,\n \"starts_at\" : 936.17,\n \"ends_at\" : 947.29,\n \"duration\" : 11.120000000000005,\n \"time_in_activity\" : 41.700222717149224,\n \"text\" : \"That is really interesting because it does mention elsewhere in the brief that about 400 like volunteers would have access to parts of it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301407,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301408,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"duration\" : 17.279999999999973,\n \"time_in_activity\" : 42.23340757238307,\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301409,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301410,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301411,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301412,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301413,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301414,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301415,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301416,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301417,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301418,\n \"starts_at\" : 1073.83,\n \"ends_at\" : 1088.48,\n \"duration\" : 14.650000000000091,\n \"time_in_activity\" : 47.83207126948775,\n \"text\" : \"There are areas where it does, like, um, you know, indicate if there is something that you think, like, is, is, like, wildly out of what— like, I do wonder whether that would come under it. Um, because I can't really see how we would do that well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301419,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301420,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"duration\" : 15.860000000000127,\n \"time_in_activity\" : 50.31447661469933,\n \"text\" : \"Again, this speaks to like reporting and segmentation. I can't remember, so you're both gonna have to hold me honest. I know you can do it for like current place of employment. Is there a good way of doing historical?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301421,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301422,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"duration\" : 14.870000000000118,\n \"time_in_activity\" : 52.3772828507795,\n \"text\" : \"Yeah. Would that work at scale though? You know, if you think of like somebody's done like work for 10 different organizations. Sorry, my cat is causing— Tina?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301423,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"duration\" : 4.680000000000064,\n \"time_in_activity\" : 54.79153674832962,\n \"text\" : \"Yeah, yeah. And I do also wonder, like, how would you use that?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301424,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301425,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301426,\n \"starts_at\" : 1234.83,\n \"ends_at\" : 1248.79,\n \"duration\" : 13.960000000000036,\n \"time_in_activity\" : 55.003563474387526,\n \"text\" : \"Because, like, You know, I get for like maybe your last employer, like if you had relationships there, but you know, where you worked 10 years ago, probably unlikely that's going to be relevant for the university. And you know, in all honesty.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301427,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301428,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301429,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301430,\n \"starts_at\" : 1405.27,\n \"ends_at\" : 1421.52,\n \"duration\" : 16.25,\n \"time_in_activity\" : 62.59554565701559,\n \"text\" : \"So it may be as we get stuck into like our response, maybe we have a little bit of a look at what would the ideal be, you know, given we're in the early stages and they are asking for input in terms of what is, you know, what is likely with what's in the market.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301431,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301432,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301433,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301434,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301435,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301436,\n \"starts_at\" : 1585.02,\n \"ends_at\" : 1598.91,\n \"duration\" : 13.8900000000001,\n \"time_in_activity\" : 70.6022271714922,\n \"text\" : \"Like, we can validate it, but I would imagine You know, it's coming into the UK entity. As far as I'm aware, this is where I find out that they have lots of global campuses and stuff, but, but to my knowledge, they primarily like work in the UK.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301437,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301438,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"duration\" : 16.539999999999964,\n \"time_in_activity\" : 71.77861915367484,\n \"text\" : \"And I wonder whether we could do— Like we talked about the other customer the other day of like a preferred currency type thing, or person is based in this country, this is the currency. Any thoughts, Sam? Anything to add?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301439,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301440,\n \"starts_at\" : 1659.84,\n \"ends_at\" : 1678.32,\n \"duration\" : 18.480000000000018,\n \"time_in_activity\" : 73.93496659242761,\n \"text\" : \"Nice. Nice. Um, so just in terms of, I'm conscious of time, so maybe I'll just go very quickly through. So I think we talked about like the scholarships and awards already, um, so I think there is a bit of there to just like dig into.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301441,\n \"starts_at\" : 1697.49,\n \"ends_at\" : 1716.4,\n \"duration\" : 18.910000000000082,\n \"time_in_activity\" : 75.6120267260579,\n \"text\" : \"Um, I think all of these are fine. I don't have anything I'm worried about. Um, I think this is the one where sort of getting to grips, like, what they need to do comes back to what we discussed before with, you know, supporters being in.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301442,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301443,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301444,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301445,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301446,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301447,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301448,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301449,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301450,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301451,\n \"starts_at\" : 1810.43,\n \"ends_at\" : 1823.49,\n \"duration\" : 13.059999999999945,\n \"time_in_activity\" : 80.64276169265034,\n \"text\" : \"Yeah, OK, we use that Lego. I mean, many, many years ago when I worked out, it was like the ordering system. I don't know if that's what it is for them, but that's what it was at Lego. Order is like processing payments.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301452,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301453,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301454,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301455,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301456,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301457,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301458,\n \"starts_at\" : 2151.82,\n \"ends_at\" : 2160.06,\n \"duration\" : 8.239999999999782,\n \"time_in_activity\" : 95.84944320712697,\n \"text\" : \"So don't feel either, I think, you know, that just because we've put something down that that is like the way we have to go. I think that's really the power of partnering on it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301459,\n \"starts_at\" : 2174.88,\n \"ends_at\" : 2189.48,\n \"duration\" : 14.599999999999909,\n \"time_in_activity\" : 96.87661469933185,\n \"text\" : \"Yeah. So actually a lot of this I think actually would be you probably. I mean, I know what it looks like from our end already based on the capacity. So we're looking at probably about £90K a year from us just based on the sizing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301460,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"14938c70-b107-40af-81f1-504be786e888\",\n \"definition\" : \"like\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"like\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301461,\n \"starts_at\" : 206.03,\n \"ends_at\" : 223.68,\n \"duration\" : 17.650000000000006,\n \"time_in_activity\" : 9.17728285077951,\n \"text\" : \"But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301462,\n \"starts_at\" : 1055.48,\n \"ends_at\" : 1065.23,\n \"duration\" : 9.75,\n \"time_in_activity\" : 47.014699331848554,\n \"text\" : \"And like maybe we just find a different solution, like a different place to store the documents, but they have like a ton of historic documents that they want stored as well as I'm sure every year new ones.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301463,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301464,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301465,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301466,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"dfcb60c3-6093-48ba-894f-99bf85751858\",\n \"definition\" : \"solution\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"solution\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301467,\n \"starts_at\" : 224.3,\n \"ends_at\" : 235.7,\n \"duration\" : 11.399999999999977,\n \"time_in_activity\" : 9.99109131403118,\n \"text\" : \"And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301468,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301469,\n \"starts_at\" : 422.46,\n \"ends_at\" : 440.16,\n \"duration\" : 17.700000000000045,\n \"time_in_activity\" : 18.81781737193764,\n \"text\" : \"We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301470,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301471,\n \"starts_at\" : 1048.35,\n \"ends_at\" : 1054.49,\n \"duration\" : 6.1400000000001,\n \"time_in_activity\" : 46.697104677060125,\n \"text\" : \"Yeah, I think that was one of my biggest red flags overall in the whole project is they're like document storage needs.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301472,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"670371e3-c46d-428f-a368-dc60e79dc5eb\",\n \"definition\" : \"document\",\n \"playback_topic\" : {\n \"id_string\" : \"cad9ea98-3889-400f-b203-aeb4f4b9f88a\",\n \"title\" : \"Solution\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"document\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301473,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b6beaf7b-575e-4d44-8011-2bd4dbb5a279\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301474,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"1f2316f7-f36c-4b31-97ea-81e9d30d6b60\",\n \"definition\" : \"expensive\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expensive\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301475,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"duration\" : 23.900000000000034,\n \"time_in_activity\" : 10.53229398663697,\n \"text\" : \"Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301476,\n \"starts_at\" : 327.08,\n \"ends_at\" : 336.29,\n \"duration\" : 9.210000000000036,\n \"time_in_activity\" : 14.569265033407572,\n \"text\" : \"Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n }\n },\n {\n \"id\" : 476301477,\n \"starts_at\" : 348.53,\n \"ends_at\" : 358.93,\n \"duration\" : 10.400000000000034,\n \"time_in_activity\" : 15.524721603563474,\n \"text\" : \"I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301478,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301479,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301480,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f41f1985-293d-46b7-b39f-dd4377d39ad3\",\n \"definition\" : \"share\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"share\",\n \"locale\" : \"en\",\n \"sort\" : 22\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301481,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301482,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2826d3a3-936d-4eca-9554-276462b1d932\",\n \"definition\" : \"servers\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"servers\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301483,\n \"starts_at\" : 260.44,\n \"ends_at\" : 271.41,\n \"duration\" : 10.970000000000027,\n \"time_in_activity\" : 11.600890868596881,\n \"text\" : \"That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301484,\n \"starts_at\" : 1727.51,\n \"ends_at\" : 1744.66,\n \"duration\" : 17.15000000000009,\n \"time_in_activity\" : 76.94922048997773,\n \"text\" : \"Um, because I couldn't imagine they would want them to know like all of the money and stuff either. But yeah, um, obviously this one I've checked. Um, so I think we're good on that. I think a recommendation would be to move away from like CAF.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9976b51a-daf2-4212-be68-77d4a0309757\",\n \"definition\" : \"move\",\n \"playback_topic\" : {\n \"id_string\" : \"a531a596-673d-44c7-bd2d-844085e5b51d\",\n \"title\" : \"Mobilizing\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"move\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301485,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301486,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301487,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301488,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301489,\n \"starts_at\" : 1491.26,\n \"ends_at\" : 1503.19,\n \"duration\" : 11.930000000000064,\n \"time_in_activity\" : 66.42583518930958,\n \"text\" : \"I spend a lot of time thinking about it, um, and talking about it. Uh, Sam, this really is one for you. Um, I think—\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7aed80c9-2575-4a8b-8a08-9a89bdc9fd59\",\n \"definition\" : \"uh\",\n \"playback_topic\" : {\n \"id_string\" : \"c3503958-af1c-4fe7-9bc3-f494472e98e6\",\n \"title\" : \"Filler Words\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"1d70669f-ceaa-4e1c-ba3c-58bc9fb6b2d2\",\n \"team_id\" : 575,\n \"title\" : \"Miscellaneous\",\n \"color\" : \"#4263eb\",\n \"sort\" : 4\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : 0,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"uh\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301490,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301491,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301492,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c25a4619-30c1-4717-b566-6e46d5f0e583\",\n \"definition\" : \"proposal\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"proposal\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301493,\n \"starts_at\" : 284.02,\n \"ends_at\" : 300.19,\n \"duration\" : 16.170000000000016,\n \"time_in_activity\" : 12.651224944320713,\n \"text\" : \"She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301494,\n \"starts_at\" : 1631.48,\n \"ends_at\" : 1641.9,\n \"duration\" : 10.420000000000073,\n \"time_in_activity\" : 72.67171492204899,\n \"text\" : \"I, I think there's ways around these different things depending on what outcomes they need. Um, so I don't think it should stop us from putting forward what we can do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301495,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"duration\" : 14.069999999999936,\n \"time_in_activity\" : 89.64587973273942,\n \"text\" : \"Um, yeah, it's massive, isn't it? And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even? Yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6fddd800-3ce1-4c76-941d-654ef129a54f\",\n \"definition\" : \"forward\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"forward\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301496,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"duration\" : 22.880000000000052,\n \"time_in_activity\" : 16.092650334075724,\n \"text\" : \"Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301497,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301498,\n \"starts_at\" : 1360.45,\n \"ends_at\" : 1383.15,\n \"duration\" : 22.700000000000045,\n \"time_in_activity\" : 60.59910913140312,\n \"text\" : \"Yeah, I wonder, I mean, you could, but it's again a bit of a, it's a bit of a use case where it's not like what you'd necessarily expect from all the other things in a CRM, um, because it's just like a random, like, okay, this is like another tool maybe or something.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301499,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"656716c6-6fee-439e-a835-daac49e139dc\",\n \"definition\" : \"CRM\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"CRM\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301500,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301501,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5bd3c6dd-b857-4fad-a2ce-b55dd2b538a3\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 18\n }\n },\n {\n \"id\" : 476301502,\n \"starts_at\" : 442.36,\n \"ends_at\" : 461.65,\n \"duration\" : 19.289999999999964,\n \"time_in_activity\" : 19.704231625835188,\n \"text\" : \"In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301503,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"16de7cde-0ebb-4ce4-af9a-6b6fc90f7b5e\",\n \"definition\" : \"communication\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communication\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301504,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"duration\" : 14.170000000000073,\n \"time_in_activity\" : 23.281514476614696,\n \"text\" : \"My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"68cfaa38-14a5-416f-b215-9629559bf39e\",\n \"definition\" : \"sharing\",\n \"playback_topic\" : {\n \"id_string\" : \"541ce6e5-a792-45b5-95ff-ae95f6fe33cc\",\n \"title\" : \"Rapport Building\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"daa52584-7675-488e-9c3d-9ac9a52ea5e9\",\n \"team_id\" : 575,\n \"title\" : \"Intros\",\n \"color\" : \"#f03e3e\",\n \"sort\" : 0\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"sharing\",\n \"locale\" : \"en\",\n \"sort\" : 23\n }\n },\n {\n \"id\" : 476301505,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4e57d593-3f66-419f-b44c-767f8dd64206\",\n \"definition\" : \"unclear\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"unclear\",\n \"locale\" : \"en\",\n \"sort\" : 20\n }\n },\n {\n \"id\" : 476301506,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301507,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301508,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6176f5e4-480a-4aec-bbd4-e06c36ff804a\",\n \"definition\" : \"events\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"events\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301509,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"29100066-f3fd-4156-8167-cad996c63eec\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301510,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"90692b18-dd0e-4c49-bec1-f7850fd4b4a9\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"630d70f5-ab31-4b92-a0f8-0c220413f9a0\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301511,\n \"starts_at\" : 537.11,\n \"ends_at\" : 547.63,\n \"duration\" : 10.519999999999982,\n \"time_in_activity\" : 23.924721603563473,\n \"text\" : \"Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f5e85048-c83e-4e95-83a4-e9a956c6a07d\",\n \"definition\" : \"email\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"email\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301512,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301513,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bee4e014-c616-4a35-a674-3dc8c761685d\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 19\n }\n },\n {\n \"id\" : 476301514,\n \"starts_at\" : 563.28,\n \"ends_at\" : 576.77,\n \"duration\" : 13.490000000000009,\n \"time_in_activity\" : 25.09042316258352,\n \"text\" : \"So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301515,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"34510b01-3916-4f05-a938-2472b4f3b5e1\",\n \"definition\" : \"integrate\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integrate\",\n \"locale\" : \"en\",\n \"sort\" : 11\n }\n },\n {\n \"id\" : 476301516,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"duration\" : 20.350000000000023,\n \"time_in_activity\" : 26.36347438752784,\n \"text\" : \"Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301517,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301518,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301519,\n \"starts_at\" : 917.08,\n \"ends_at\" : 933.74,\n \"duration\" : 16.659999999999968,\n \"time_in_activity\" : 40.84988864142539,\n \"text\" : \"Because I don't know if they're going to want to have academic achievements and like scholarships attached to something that someone who's fundraising for them can see when they're calling them, or, you know, I think that's a question.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"64d2f335-8daf-4449-81d4-33d2e3d69297\",\n \"definition\" : \"fundraising\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"fundraising\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301520,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cbac355f-af9d-4c5d-9d07-4789b5d6b013\",\n \"definition\" : \"council\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"council\",\n \"locale\" : \"en\",\n \"sort\" : 13\n }\n },\n {\n \"id\" : 476301521,\n \"starts_at\" : 635.17,\n \"ends_at\" : 649.99,\n \"duration\" : 14.82000000000005,\n \"time_in_activity\" : 28.29265033407572,\n \"text\" : \"Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d58e3339-0b29-4746-9055-87bd22dccb43\",\n \"definition\" : \"metrics\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"metrics\",\n \"locale\" : \"en\",\n \"sort\" : 7\n }\n },\n {\n \"id\" : 476301522,\n \"starts_at\" : 650.9,\n \"ends_at\" : 668.77,\n \"duration\" : 17.870000000000005,\n \"time_in_activity\" : 28.993318485523385,\n \"text\" : \"Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fa173a66-942f-4b27-8216-2c489f771993\",\n \"definition\" : \"note\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"note\",\n \"locale\" : \"en\",\n \"sort\" : 15\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301523,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301524,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"92104885-c8f3-40c1-a08a-06b9aa8d8b13\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301525,\n \"starts_at\" : 668.82,\n \"ends_at\" : 686.26,\n \"duration\" : 17.43999999999994,\n \"time_in_activity\" : 29.791536748329623,\n \"text\" : \"I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301526,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"69b17158-5dec-4427-b4e6-af05cc2982e8\",\n \"definition\" : \"event\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"event\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301527,\n \"starts_at\" : 686.44,\n \"ends_at\" : 698.68,\n \"duration\" : 12.239999999999895,\n \"time_in_activity\" : 30.576391982182628,\n \"text\" : \"I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301528,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301529,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"duration\" : 8.279999999999973,\n \"time_in_activity\" : 84.66458797327394,\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301530,\n \"starts_at\" : 1966.53,\n \"ends_at\" : 1984.79,\n \"duration\" : 18.25999999999999,\n \"time_in_activity\" : 87.59599109131403,\n \"text\" : \"Yeah, I think that whole section actually, if you go back to the top of that, just so I can see, so the interoperability and integration. So they say, okay, the CRM must support fully documented APIs and integrate with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"be26f355-d9db-4a71-bf21-656c801fe7d5\",\n \"definition\" : \"integration\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"integration\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301531,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf09ec56-c20d-449b-9fac-2644d6e628be\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301532,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"duration\" : 15.899999999999977,\n \"time_in_activity\" : 31.620044543429845,\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b133b829-817c-4a78-9f98-14a312c64c1a\",\n \"definition\" : \"Zapier\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Zapier\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301533,\n \"starts_at\" : 729.96,\n \"ends_at\" : 748.19,\n \"duration\" : 18.230000000000018,\n \"time_in_activity\" : 32.514922048997775,\n \"text\" : \"The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9af2cb24-e410-4158-b7fe-66b164b1f216\",\n \"definition\" : \"rally\",\n \"playback_topic\" : {\n \"id_string\" : \"bbac4b54-36ac-4a3b-b755-d988ef65162b\",\n \"title\" : \"Events\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"rally\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301534,\n \"starts_at\" : 748.61,\n \"ends_at\" : 762.33,\n \"duration\" : 13.720000000000027,\n \"time_in_activity\" : 33.3456570155902,\n \"text\" : \"So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6b62b618-f4ab-4a4a-b28f-e1082df27371\",\n \"definition\" : \"priorities\",\n \"playback_topic\" : {\n \"id_string\" : \"1a580036-1a7b-4607-a509-2e6c9be0df1f\",\n \"title\" : \"Success Criteria\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"priorities\",\n \"locale\" : \"en\",\n \"sort\" : 10\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301535,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"baa63ae6-59b9-4c8e-9955-0d5c314c5d3c\",\n \"definition\" : \"groups\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"groups\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301536,\n \"starts_at\" : 807.33,\n \"ends_at\" : 822.05,\n \"duration\" : 14.719999999999914,\n \"time_in_activity\" : 35.96124721603564,\n \"text\" : \"Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ddc6ca98-f30d-4f1e-88a7-3881edf6552e\",\n \"definition\" : \"organizing\",\n \"playback_topic\" : {\n \"id_string\" : \"661674c5-f64e-495d-8436-0a23869aa017\",\n \"title\" : \"Distribute Leadership\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"organizing\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301537,\n \"starts_at\" : 822.16,\n \"ends_at\" : 844.41,\n \"duration\" : 22.25,\n \"time_in_activity\" : 36.62182628062361,\n \"text\" : \"And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301538,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ae6ec4ca-891d-47b5-b88f-c3c8cbd8c113\",\n \"definition\" : \"custom fields\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom fields\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301539,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"38d7866e-e4a6-4465-a80c-9c483b8f9d17\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301540,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"caf1ea04-495d-4815-8e92-f9f35ace3851\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 7\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301541,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"duration\" : 6.960000000000036,\n \"time_in_activity\" : 38.14031180400891,\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"66c987fa-5f97-4d95-b19a-572e4a34020e\",\n \"definition\" : \"import\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"import\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301542,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301543,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301544,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301545,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301546,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301547,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301548,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301549,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301550,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301551,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301552,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301553,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301554,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301555,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301556,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301557,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301558,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301559,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301560,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301561,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301562,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301563,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301564,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301565,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301566,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"da726411-37d2-48ae-9369-4e544daa7e67\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301567,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301568,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301569,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301570,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301571,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301572,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301573,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301574,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301575,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301576,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301577,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301578,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301579,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301580,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301581,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301582,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301583,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301584,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301585,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301586,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301587,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301588,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301589,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301590,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301591,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"367fff10-729c-4d0f-aac6-166889ca5613\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301592,\n \"starts_at\" : 864.05,\n \"ends_at\" : 881.1,\n \"duration\" : 17.050000000000068,\n \"time_in_activity\" : 38.487750556792875,\n \"text\" : \"I think I recall seeing it potentially in like a project brief that they do have like the main student system, and it sounded like they do push the information over because it's quite a large data set they hold, so it's 800,000 plus.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301593,\n \"starts_at\" : 896.42,\n \"ends_at\" : 900.76,\n \"duration\" : 4.340000000000032,\n \"time_in_activity\" : 39.92962138084633,\n \"text\" : \"Yeah, I mean, I think there's several ways to track that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301594,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301595,\n \"starts_at\" : 1386.55,\n \"ends_at\" : 1403.71,\n \"duration\" : 17.160000000000082,\n \"time_in_activity\" : 61.761692650334076,\n \"text\" : \"Yeah, I wonder whether they're trying to basically like consolidate, you know, not just a previous system but a number of systems, because you sort of got engagement, you've got events, You've got like data storage of alumni and then like the grant tracking and processing.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301596,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301597,\n \"starts_at\" : 1826.15,\n \"ends_at\" : 1835.46,\n \"duration\" : 9.309999999999945,\n \"time_in_activity\" : 81.34298440979956,\n \"text\" : \"One thing on their like data warehouse is Absolutely, you know, like possible. And, and that's actually what the other alumni organizations do.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301598,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301599,\n \"starts_at\" : 1835.54,\n \"ends_at\" : 1843.72,\n \"duration\" : 8.180000000000064,\n \"time_in_activity\" : 81.76124721603564,\n \"text\" : \"But just noting that that is like a much more complex build because a lot of times you're sent— you're syncing data in two directions with the data warehouse.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301600,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301601,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301602,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301603,\n \"starts_at\" : 1879.79,\n \"ends_at\" : 1890.4,\n \"duration\" : 10.610000000000127,\n \"time_in_activity\" : 83.73229398663698,\n \"text\" : \"No, so When they say university data warehouse, like, I'm thinking they have a big data lake of, like, all the data they have on every student that's been there.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301604,\n \"starts_at\" : 1890.99,\n \"ends_at\" : 1900.67,\n \"duration\" : 9.680000000000064,\n \"time_in_activity\" : 84.23118040089086,\n \"text\" : \"And so, um, I guess I'm more just curious, like, you know, there's several times they've referenced, like, you know, pushing data in and integrated systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301605,\n \"starts_at\" : 1909.51,\n \"ends_at\" : 1917.5,\n \"duration\" : 7.990000000000009,\n \"time_in_activity\" : 85.05612472160357,\n \"text\" : \"Because usually they would be creating like a two-way sync with their data warehouse, which is like— can sometimes be complicated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301606,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301607,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301608,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301609,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301610,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301611,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301612,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301613,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301614,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301615,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301616,\n \"starts_at\" : 2049.58,\n \"ends_at\" : 2059.13,\n \"duration\" : 9.550000000000182,\n \"time_in_activity\" : 91.29532293986637,\n \"text\" : \"And they need us to do it because you also got like data house environments and you got university data warehouse. So maybe worth just fleshing this out a bit more.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9d5ab249-5601-43d5-9031-e62aab84d7e8\",\n \"definition\" : \"data\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"data\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301617,\n \"starts_at\" : 901.16,\n \"ends_at\" : 916.06,\n \"duration\" : 14.899999999999977,\n \"time_in_activity\" : 40.14075723830735,\n \"text\" : \"I think another question that I've kind of had throughout that they— I didn't see— I've just read through several of them, like, at a brief level, but I didn't see highlighted too much is, like, levels of permissions.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2189e3f1-31a2-4e21-9214-774fb49aff60\",\n \"definition\" : \"too much\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"too much\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301618,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n }\n },\n {\n \"id\" : 476301619,\n \"starts_at\" : 1250.78,\n \"ends_at\" : 1258.14,\n \"duration\" : 7.360000000000127,\n \"time_in_activity\" : 55.71403118040089,\n \"text\" : \"Yeah, I mean, you could do it with tags too, but then you're just getting into a situation of you have so many tags across the board.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"159ec9fa-da57-4bdf-9c58-81b0d1f01bb7\",\n \"definition\" : \"board\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"board\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301620,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301621,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd8cedc8-12d4-448b-abec-5d093f1e83e8\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301622,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n }\n },\n {\n \"id\" : 476301623,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"duration\" : 9.870000000000118,\n \"time_in_activity\" : 76.47082405345212,\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that? I got a feeling it's probably a solution on the front end, Sam, maybe.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2f909d51-6597-4b7d-b675-ef15c980484b\",\n \"definition\" : \"segment\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"segment\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301624,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301625,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"2827057a-a013-41c7-adcf-e95b946cf4a7\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301626,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n }\n },\n {\n \"id\" : 476301627,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"c3316682-3188-49e1-850c-a8f5f201eeed\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301628,\n \"starts_at\" : 980.66,\n \"ends_at\" : 1004.31,\n \"duration\" : 23.649999999999977,\n \"time_in_activity\" : 43.68195991091314,\n \"text\" : \"Because I guess all of this is like pointing towards, right, because they've put it under like education board management, employment record management, but I think it's, it seems to be like they want a tool to be able to like display and segment this information to say in a certain way rather than like, yeah, like using this maybe as the database or record for everything.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n }\n },\n {\n \"id\" : 476301629,\n \"starts_at\" : 1036.23,\n \"ends_at\" : 1046.64,\n \"duration\" : 10.410000000000082,\n \"time_in_activity\" : 46.157238307349665,\n \"text\" : \"Um, so I wonder whether that's a piece here too that maybe we do need to establish. It's not like a proof of like, you know, having completed a course that needs to live in this database.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bbb41fea-84d0-43db-8622-f101185d9685\",\n \"definition\" : \"database\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"database\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301630,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301631,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5185444d-748a-44f7-9177-80cd4040c157\",\n \"definition\" : \"directory\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"directory\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301632,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"duration\" : 12.949999999999932,\n \"time_in_activity\" : 44.843207126948776,\n \"text\" : \"Yeah. And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right? Like, you know, if I hear from my university, you know, it'd be like you did law, you know, or this year.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d129ac2a-6e96-4ac1-b815-8f452fdd3391\",\n \"definition\" : \"this year\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"this year\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301633,\n \"starts_at\" : 1020.27,\n \"ends_at\" : 1035.08,\n \"duration\" : 14.809999999999945,\n \"time_in_activity\" : 45.44632516703786,\n \"text\" : \"Um, or there's a directory where, you know, you can connect with other alumni. Um, I did see elsewhere, and I had a question on, on my end, where they did talk about like document storage on profiles as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bc78d000-fc2b-4642-bb58-0d40175868a7\",\n \"definition\" : \"profiles\",\n \"playback_topic\" : {\n \"id_string\" : \"f83bbc1c-e1dd-4913-96f4-1c2ce57ac795\",\n \"title\" : \"Centralize Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profiles\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301634,\n \"starts_at\" : 1067.1,\n \"ends_at\" : 1073.29,\n \"duration\" : 6.190000000000055,\n \"time_in_activity\" : 47.532293986636965,\n \"text\" : \"Yeah, and I think instinctively there that is potentially when we're filling in the form.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301635,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f27b2782-27ff-4303-a7d1-a77a3051571f\",\n \"definition\" : \"form\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"form\",\n \"locale\" : \"en\",\n \"sort\" : 9\n }\n },\n {\n \"id\" : 476301636,\n \"starts_at\" : 1090.84,\n \"ends_at\" : 1094.8,\n \"duration\" : 3.9600000000000364,\n \"time_in_activity\" : 48.58975501113585,\n \"text\" : \"Um, even if it was elsewhere, I think that could get really messy.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301637,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301638,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"bd7adad8-5d60-44a7-adcc-957201f5eadb\",\n \"definition\" : \"messy\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"messy\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301639,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301640,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301641,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d4bb596b-5eb0-4486-b057-2439fd440551\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301642,\n \"starts_at\" : 1152.93,\n \"ends_at\" : 1166.67,\n \"duration\" : 13.740000000000009,\n \"time_in_activity\" : 51.3554565701559,\n \"text\" : \"I mean, there's relationship types where you can say like, I think there's former employee, but like That is quite complex again to set up. You'd have to set up each employer as an organizational profile.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301643,\n \"starts_at\" : 1936.69,\n \"ends_at\" : 1948.43,\n \"duration\" : 11.740000000000009,\n \"time_in_activity\" : 86.26681514476614,\n \"text\" : \"Like the data may be looking for when, um, when some— when something in nationbuilder has been updated on a profile, like pull that data up. Nationbuilder doesn't like tell you what part of that data has been updated.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301644,\n \"starts_at\" : 1948.49,\n \"ends_at\" : 1961.78,\n \"duration\" : 13.289999999999964,\n \"time_in_activity\" : 86.7924276169265,\n \"text\" : \"It just gives you the entire profile of anyone whose data has been updated. So it just can be like more complicated if they want us to build that kind of solution. And by us, I mean Brand Response.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b878854b-a112-456f-8fa6-f99068aecc91\",\n \"definition\" : \"profile\",\n \"playback_topic\" : {\n \"id_string\" : \"f890daf3-6f4e-4b6e-ba98-3ca4ce9ccf2f\",\n \"title\" : \"People\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"profile\",\n \"locale\" : \"en\",\n \"sort\" : 13\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301645,\n \"starts_at\" : 1166.74,\n \"ends_at\" : 1174.38,\n \"duration\" : 7.6400000000001,\n \"time_in_activity\" : 51.9706013363029,\n \"text\" : \"So I think the best would probably again be like a custom field, um, that you're adding to essentially.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301646,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ac12a9fe-c9c2-4253-99bd-851c82b9b42f\",\n \"definition\" : \"custom field\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"custom field\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301647,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"duration\" : 12.2800000000002,\n \"time_in_activity\" : 53.08997772828507,\n \"text\" : \"Yeah, I mean, again, I think it depends on like how do they want to use this data. Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301648,\n \"starts_at\" : 1205.18,\n \"ends_at\" : 1229.27,\n \"duration\" : 24.089999999999918,\n \"time_in_activity\" : 53.68285077951002,\n \"text\" : \"Um, and like, I do think you could query for custom field contains the word Chase, or current, like, the employer contains Chase. Yeah, I mean, there's ways to work it, but it's not necessarily like the ideal way that you do it.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301649,\n \"starts_at\" : 1323.03,\n \"ends_at\" : 1341.59,\n \"duration\" : 18.559999999999945,\n \"time_in_activity\" : 58.93229398663697,\n \"text\" : \"Yeah, I think that was the one to query. So it's a weird thing to have an alumni system. Yeah. I'm mulling that over, but that's my view. Um, so grant end-to-end, I think we probably would recommend paths for that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f1d67b71-8c44-4f14-aa20-d626bd3903f7\",\n \"definition\" : \"query\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"query\",\n \"locale\" : \"en\",\n \"sort\" : 5\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301650,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"duration\" : 14.61999999999989,\n \"time_in_activity\" : 56.076169265033414,\n \"text\" : \"Yeah, I think that would be messy. I wouldn't recommend because you wouldn't be able to find anything. If it's across 800,000 people. Okay, volunteering. Any flags here?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fb5447db-f993-4d03-8227-1b8e9f0d32c6\",\n \"definition\" : \"volunteering\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteering\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301651,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"6f66ff08-9ed0-44e4-a45e-0df66eac90b5\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"5d1b95e6-cf8f-4b06-acd5-38424b666478\",\n \"title\" : \"Volunteering\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301652,\n \"starts_at\" : 1281.71,\n \"ends_at\" : 1300.75,\n \"duration\" : 19.039999999999964,\n \"time_in_activity\" : 57.091759465478845,\n \"text\" : \"I mean, the volunteer activity can always be like if people are trying to hour track is always like a little bit tricky. But like nothing that says like we absolutely couldn't do it to me.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8edbdf52-db5d-46e6-ad1f-644548152d4c\",\n \"definition\" : \"volunteer\",\n \"playback_topic\" : {\n \"id_string\" : \"7c07c82a-f492-428d-a6f7-2410dbb4d4c3\",\n \"title\" : \"Website\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"volunteer\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301653,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"26f83184-56b8-4f69-9c73-5da34745d516\",\n \"definition\" : \"will get\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"will get\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301654,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"cf211e33-aa24-4cb8-8f66-3b8db1240e89\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"fd5b5e5f-dc9b-41a1-85d0-813e8724ccf1\",\n \"title\" : \"Security & Compliance\",\n \"sort\" : 7,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301655,\n \"starts_at\" : 1475.78,\n \"ends_at\" : 1491.07,\n \"duration\" : 15.289999999999964,\n \"time_in_activity\" : 65.73630289532294,\n \"text\" : \"So I can take that away and just have a little bit of a look at what we're looking at. You know, if it's like £1,000, then like that will get messy. If it's less it might be manageable. Uh, I mean, GDPR, I feel pretty good about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"9032e94c-d5a4-469f-bea8-ccb728d047db\",\n \"definition\" : \"GDPR\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"GDPR\",\n \"locale\" : \"en\",\n \"sort\" : 12\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301656,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b3e7da10-4b0a-4af8-b463-871dbd823135\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"1adf5a29-0e86-456c-b14e-864859b3a5f9\",\n \"title\" : \"Fundraising\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301657,\n \"starts_at\" : 1527.42,\n \"ends_at\" : 1543.64,\n \"duration\" : 16.220000000000027,\n \"time_in_activity\" : 68.03652561247216,\n \"text\" : \"But, and even with SmartRaise, it is like a little complex on the nationbuilder side to do multi-currency reporting, just because like everything will still You have to rely on donation custom fields to understand what the original currency was, or tracking codes.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"7bef623f-e3b9-4e15-b910-64a475817d1b\",\n \"definition\" : \"donation\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"donation\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301658,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301659,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"46550b41-b19d-40d2-a66e-bb58d33aaf64\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301660,\n \"starts_at\" : 1552.44,\n \"ends_at\" : 1554.25,\n \"duration\" : 1.8099999999999454,\n \"time_in_activity\" : 69.15100222717149,\n \"text\" : \"And send emails.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301661,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"fe87516a-ef85-4a16-9674-10ad643dc8e6\",\n \"definition\" : \"send\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"send\",\n \"locale\" : \"en\",\n \"sort\" : 4\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301662,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301663,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"344a8761-bcd5-4f0b-8e19-a1d8d5adab25\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"c6b7a793-564d-41d3-aed7-d4e0a06c9c56\",\n \"title\" : \"Problem Finding\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301664,\n \"starts_at\" : 1572.18,\n \"ends_at\" : 1584.96,\n \"duration\" : 12.779999999999973,\n \"time_in_activity\" : 70.03028953229399,\n \"text\" : \"I think as well with that though, like, one, because they're just based in the UK, I would assume that like having one currency that that reporting is done in is probably not a problem.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301665,\n \"starts_at\" : 1599.39,\n \"ends_at\" : 1611.18,\n \"duration\" : 11.789999999999964,\n \"time_in_activity\" : 71.24231625835189,\n \"text\" : \"And then I suppose in terms of the currencies, that's probably a problem they would have most other places too, in terms of working out what currency is the right currency for the audience.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"00daa3ae-21d1-4d24-abae-aa7f1e5ba1c0\",\n \"definition\" : \"problem\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"problem\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301666,\n \"starts_at\" : 1628.03,\n \"ends_at\" : 1630.24,\n \"duration\" : 2.2100000000000364,\n \"time_in_activity\" : 72.51804008908685,\n \"text\" : \"I mean, you are the expert at the other end.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d309f494-0533-4c33-a879-0a5963449a2d\",\n \"definition\" : \"expert\",\n \"playback_topic\" : {\n \"id_string\" : \"e880d362-241e-403e-b42f-06fde7dce338\",\n \"title\" : \"NB Partners\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"expert\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301667,\n \"starts_at\" : 1680.87,\n \"ends_at\" : 1696.21,\n \"duration\" : 15.340000000000146,\n \"time_in_activity\" : 74.871714922049,\n \"text\" : \"Importing, I think, is fine, quite straightforward. Reporting, there might be a conversation about whether we'd probably do nationbuilder insights as part of the reporting depending on needs, but I imagine at that level we would probably want to.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301668,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"duration\" : 4.0,\n \"time_in_activity\" : 83.46369710467707,\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301669,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e35b464b-fda7-4907-9f68-8d73fafd5eb7\",\n \"definition\" : \"Insights\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Insights\",\n \"locale\" : \"en\",\n \"sort\" : 1\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301670,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"341d6a9f-64d0-4341-ab17-613444dec84a\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"dcde1890-1ee0-4edf-86d3-3607fb2ee04e\",\n \"title\" : \"Decision Process\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 23\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301671,\n \"starts_at\" : 1745.09,\n \"ends_at\" : 1764.83,\n \"duration\" : 19.74000000000001,\n \"time_in_activity\" : 77.73229398663698,\n \"text\" : \"It's a horrible user experience anyway, so they shouldn't be using it. My view. And the same thing here. Sorry, I'm rushing through, so do shout if there is something where you're like, this is a deal breaker. Yeah, yeah, it's fine.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"f2f0aab4-2cf9-488f-8912-813d3d2d7bf9\",\n \"definition\" : \"deal breaker\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"deal breaker\",\n \"locale\" : \"en\",\n \"sort\" : 29\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301672,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"duration\" : 9.319999999999936,\n \"time_in_activity\" : 78.82538975501113,\n \"text\" : \"Could you just go up a little bit, Lina? Sorry, I just saw something up. So university SAP and finance banking systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"8ec0c714-0f4e-4298-9c50-6035420a7ba5\",\n \"definition\" : \"finance\",\n \"playback_topic\" : {\n \"id_string\" : \"6a5b1a7b-882f-40b5-a793-5b3c23b5b890\",\n \"title\" : \"Finance\",\n \"sort\" : 4,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"finance\",\n \"locale\" : \"en\",\n \"sort\" : 0\n }\n },\n {\n \"id\" : 476301673,\n \"starts_at\" : 1780.89,\n \"ends_at\" : 1787.64,\n \"duration\" : 6.75,\n \"time_in_activity\" : 79.32694877505568,\n \"text\" : \"I would imagine that's a little bit like when people come to us and just have a specialized like accounting software like Xerox.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b187e0e4-9506-4b4c-9e9a-ee55ac392d60\",\n \"definition\" : \"accounting\",\n \"playback_topic\" : {\n \"id_string\" : \"8d7ef277-4ccf-45cc-a07e-6ce9bd63a291\",\n \"title\" : \"Procurement\",\n \"sort\" : 8,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"accounting\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301674,\n \"starts_at\" : 1789.09,\n \"ends_at\" : 1799.32,\n \"duration\" : 10.230000000000018,\n \"time_in_activity\" : 79.69220489977728,\n \"text\" : \"Um, that would be my guess is if they have like donations and things coming in, being able to easily share that with their financial teams in the right sort of software systems.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"005d73bb-e2e9-472d-851e-6296ec9e0571\",\n \"definition\" : \"financial\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"financial\",\n \"locale\" : \"en\",\n \"sort\" : 36\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301675,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301676,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301677,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301678,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"5e4964c6-447a-4eaf-91a5-5d78c1d7f555\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"1a8fc631-6f5d-4842-92b5-8b737b7c70c6\",\n \"title\" : \"Data\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 8\n }\n },\n {\n \"id\" : 476301679,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301680,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301681,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301682,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4d431880-4dc2-4496-8a97-432d6a833e6a\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"197053fd-d677-422d-926b-49558b7396e8\",\n \"title\" : \"Settings\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 6\n }\n },\n {\n \"id\" : 476301683,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301684,\n \"starts_at\" : 1862.05,\n \"ends_at\" : 1873.65,\n \"duration\" : 11.600000000000136,\n \"time_in_activity\" : 82.94209354120267,\n \"text\" : \"Is what you're— just sort of to make sure I understood that, Rachel, so I've heard you say that that's a more complex build and what they would need to do is to use the API to sync that data.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301685,\n \"starts_at\" : 1917.6,\n \"ends_at\" : 1935.2,\n \"duration\" : 17.600000000000136,\n \"time_in_activity\" : 85.41648106904232,\n \"text\" : \"And just like having a real-time sync and having the data, like having the right unique identifiers in place so that the data is not being duplicated and how the data comes in and the way that like nationbuilder pushes data like via the API.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301686,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"duration\" : 18.37000000000012,\n \"time_in_activity\" : 88.80935412026726,\n \"text\" : \"So in this section, are they, are they saying they just want a documented API that potentially can be integrated with this stuff? Or are they saying we want a solution that is integrated with these 6 points? I mean, it makes a huge difference.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"495b5042-b545-4fa7-bda7-076ae2e0b2d1\",\n \"definition\" : \"API\",\n \"playback_topic\" : {\n \"id_string\" : \"51cb95f0-0b1f-4d2a-bb69-1c1e0802f17e\",\n \"title\" : \"Integrations\",\n \"sort\" : 11,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"API\",\n \"locale\" : \"en\",\n \"sort\" : 17\n }\n },\n {\n \"id\" : 476301687,\n \"starts_at\" : 1844.69,\n \"ends_at\" : 1860.75,\n \"duration\" : 16.059999999999945,\n \"time_in_activity\" : 82.16881959910913,\n \"text\" : \"So I'm curious if they would be expecting that build of the API integration in the like delivery of the solution. Because that would change the price, I would expect, a good bit.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d515c631-36c9-48fa-8286-b17732e16f1d\",\n \"definition\" : \"price\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"price\",\n \"locale\" : \"en\",\n \"sort\" : 3\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301688,\n \"starts_at\" : 2027.48,\n \"ends_at\" : 2031.81,\n \"duration\" : 4.329999999999927,\n \"time_in_activity\" : 90.3109131403118,\n \"text\" : \"Power BI, Tableau, data warehouse, like that could be insights possibly too.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"group\" : {\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n }\n }\n }\n },\n {\n \"id\" : 476301689,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"duration\" : 16.34999999999991,\n \"time_in_activity\" : 90.52783964365256,\n \"text\" : \"Yeah. And also like it's very rare. I'm curious about having both Power BI and Tableau. They do the same. So I think that is like a— I'm curious about that. Is it the ability to do it again or is it they have it?\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"93bb0cce-9166-4545-a1fe-1f67e227eb65\",\n \"definition\" : \"Tableau\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"Tableau\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301690,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"069eca6f-860a-44d5-a7df-2f9442f5085a\",\n \"definition\" : \"You want to\",\n \"playback_topic\" : {\n \"id_string\" : \"75ca1b36-c0fb-465d-b1f0-28b3ddced2f1\",\n \"title\" : \"Reflective Listening\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b7d8a56e-dd03-4c90-8dc9-f7f9204e8384\",\n \"team_id\" : 575,\n \"title\" : \"Discovery Skills\",\n \"color\" : \"#d6336c\",\n \"sort\" : 8\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"You want to\",\n \"locale\" : \"en\",\n \"sort\" : 9\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301691,\n \"starts_at\" : 2089.26,\n \"ends_at\" : 2103.38,\n \"duration\" : 14.11999999999989,\n \"time_in_activity\" : 93.06280623608019,\n \"text\" : \"Yeah. Um, well, I'm happy to go through it with Rachel as well, Sam, if you want to, and we can— because I think quite a lot of it comes to us in the first place for the first pass, whereas some of the more implementation stuff is probably you.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4640c693-3910-4104-9343-3a3983ecc161\",\n \"definition\" : \"implementation\",\n \"playback_topic\" : {\n \"id_string\" : \"ba6bf8d5-6890-4ca3-9f29-730ac11c2502\",\n \"title\" : \"Scoping\",\n \"sort\" : 5,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"implementation\",\n \"locale\" : \"en\",\n \"sort\" : 8\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301692,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"d5e89c93-9048-462a-a09a-2cc25f247c63\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"1510bb31-802b-4de6-8736-1c254810b1c3\",\n \"title\" : \"Communications\",\n \"sort\" : 2,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 17\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301693,\n \"starts_at\" : 2103.93,\n \"ends_at\" : 2118.64,\n \"duration\" : 14.710000000000036,\n \"time_in_activity\" : 93.71625835189309,\n \"text\" : \"But what I suggest is maybe we do that, share it async, And then I think we just communicate about, you know, who is doing what, and it would be great to, you know, for both parties to have a second pass at it too, um, so that we're fully aligned on what we're submitting.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"e581e987-42a3-4a81-978f-e571b66793cf\",\n \"definition\" : \"communicate\",\n \"playback_topic\" : {\n \"id_string\" : \"e319bd25-3433-467b-a161-290020f3f69a\",\n \"title\" : \"Targeting\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"9ed9c15a-32b4-4d41-a94f-2f076741cd57\",\n \"team_id\" : 575,\n \"title\" : \"Organizing Principles\",\n \"color\" : \"#f06595\",\n \"sort\" : 7\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"communicate\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301694,\n \"starts_at\" : 2142.18,\n \"ends_at\" : 2151.53,\n \"duration\" : 9.350000000000364,\n \"time_in_activity\" : 95.42004454342982,\n \"text\" : \"Yeah, that sounds great, Sam. And there could also be things where Rachel and I go like, this is what we think they should do, and be like, actually, when I built for, you know, the European Parliament, this is what we did.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"0ac9ca41-a757-4395-ba1b-5c71b0720cf6\",\n \"definition\" : \"parliament\",\n \"playback_topic\" : {\n \"id_string\" : \"0e6c142f-f06a-498d-8c33-014459656e4e\",\n \"title\" : \"Advocacy\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"bf89485e-7590-495f-9f00-3fe1fb90654f\",\n \"team_id\" : 575,\n \"title\" : \"Discovery\",\n \"color\" : \"#7048e8\",\n \"sort\" : 5\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"parliament\",\n \"locale\" : \"en\",\n \"sort\" : 14\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301695,\n \"starts_at\" : 2161.4,\n \"ends_at\" : 2174.1,\n \"duration\" : 12.699999999999818,\n \"time_in_activity\" : 96.2761692650334,\n \"text\" : \"Sounds good. Yeah, definitely. And I guess the other, the other question is like starting to think about figures and pricing of it and like, I don't know what that section of the form looks like or what they want, but yeah.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"4da2009c-a588-4082-bd57-62eec6a6ab16\",\n \"definition\" : \"pricing\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"pricing\",\n \"locale\" : \"en\",\n \"sort\" : 10\n }\n },\n {\n \"id\" : 476301696,\n \"starts_at\" : 2190.71,\n \"ends_at\" : 2204.25,\n \"duration\" : 13.539999999999964,\n \"time_in_activity\" : 97.58173719376391,\n \"text\" : \"But yeah, I think we should talk about that because I also think, you know, we could do training. 'But actually, I think it could also be you, like, you know, as a partner.' So yeah, so I think we can start to have a think about that.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"b056b571-0ec7-4e51-9751-fec16e04d5bc\",\n \"definition\" : \"training\",\n \"playback_topic\" : {\n \"id_string\" : \"a8bc68e3-339c-4285-b3e4-b7329fd7f1c9\",\n \"title\" : \"Add-Ons\",\n \"sort\" : 9,\n \"playback_theme\" : {\n \"id_string\" : \"a29f8381-4bd6-4f36-a61f-d9a9e0a17ace\",\n \"team_id\" : 575,\n \"title\" : \"Product Features\",\n \"color\" : \"#ae3ec9\",\n \"sort\" : 6\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"training\",\n \"locale\" : \"en\",\n \"sort\" : 0\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301697,\n \"starts_at\" : 2207.47,\n \"ends_at\" : 2215.33,\n \"duration\" : 7.860000000000127,\n \"time_in_activity\" : 98.328285077951,\n \"text\" : \"Okay, so they've given a, like, a table with— okay, they want it sort of standardized and the unit of measure and so on. Okay, cool.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"08dc1387-34fa-4710-a228-aa0c93a10580\",\n \"definition\" : \"table\",\n \"playback_topic\" : {\n \"id_string\" : \"cc663eed-01d9-44ff-b116-f9e0ab29673f\",\n \"title\" : \"Contract Details\",\n \"sort\" : 6,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"table\",\n \"locale\" : \"en\",\n \"sort\" : 4\n }\n },\n {\n \"id\" : 476301698,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"75373f6b-56d1-4998-b1fc-f8269af8a7c2\",\n \"definition\" : \"cost\",\n \"playback_topic\" : {\n \"id_string\" : \"4bacb5bb-52c6-42df-b5d9-bc3ebfd25b95\",\n \"title\" : \"Pricing\",\n \"sort\" : 3,\n \"playback_theme\" : {\n \"id_string\" : \"b3e744ee-e9f0-46f3-b807-e5af6c05204b\",\n \"team_id\" : 575,\n \"title\" : \"Deal Process\",\n \"color\" : \"#f76707\",\n \"sort\" : 1\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"cost\",\n \"locale\" : \"en\",\n \"sort\" : 2\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301699,\n \"starts_at\" : 2220.48,\n \"ends_at\" : 2231.6,\n \"duration\" : 11.11999999999989,\n \"time_in_activity\" : 98.90779510022271,\n \"text\" : \"So it's just a— it's a indication of what it will cost them rather than a, this is, you know, what we will hold you to and what we will use to negotiate, you know, amongst suppliers with.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"ff694c5d-8bfc-4b90-a599-39a6d04fda9b\",\n \"definition\" : \"negotiate\",\n \"playback_topic\" : {\n \"id_string\" : \"b21a1f39-3b97-42c9-8352-c2700ed61780\",\n \"title\" : \"Problems & Concerns\",\n \"sort\" : 1,\n \"playback_theme\" : {\n \"id_string\" : \"c0045cf0-4ae5-4c76-9165-3e99af8ee8fb\",\n \"team_id\" : 575,\n \"title\" : \"Objections\",\n \"color\" : \"#ffd43b\",\n \"sort\" : 2\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"negotiate\",\n \"locale\" : \"en\",\n \"sort\" : 16\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n },\n {\n \"id\" : 476301700,\n \"starts_at\" : 2234.04,\n \"ends_at\" : 2240.68,\n \"duration\" : 6.639999999999873,\n \"time_in_activity\" : 99.51180400890868,\n \"text\" : \"Okay, thank you so much, Sam. Um, thank you, Rachel. I will send over just all of the files, um, and then share the document as well.\",\n \"playback_topic_trigger\" : {\n \"id_string\" : \"32f8d183-2817-41a3-8853-23920d6b6235\",\n \"definition\" : \"i will\",\n \"playback_topic\" : {\n \"id_string\" : \"837f7420-97b5-420b-ab1a-96660ed90dec\",\n \"title\" : \"Action Items\",\n \"sort\" : 0,\n \"playback_theme\" : {\n \"id_string\" : \"b23ffcfc-3580-4f5c-abb7-28ca3735a94f\",\n \"team_id\" : 575,\n \"title\" : \"Next Steps\",\n \"color\" : \"#37b24d\",\n \"sort\" : 3\n }\n },\n \"regex_enabled\" : 0,\n \"speaker_id\" : null,\n \"stemming_enabled\" : 0,\n \"team_id\" : null,\n \"title\" : \"i will\",\n \"locale\" : \"en\",\n \"sort\" : 11\n },\n \"participant\" : {\n \"user\" : {\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"group\" : {\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n }\n }\n }\n }\n ],\n \"questions\" : [\n {\n \"id\" : 130241830,\n \"starts_at\" : 103.52,\n \"ends_at\" : 104.69,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Hey, Leena, how are you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241831,\n \"starts_at\" : 123.45,\n \"ends_at\" : 129.71,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have you met before?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241833,\n \"starts_at\" : 236.45,\n \"ends_at\" : 260.35,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is that the easiest way to do it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241836,\n \"starts_at\" : 361.28,\n \"ends_at\" : 384.16,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts from you on this?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241838,\n \"starts_at\" : 522.67,\n \"ends_at\" : 536.84,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Is that like sharing?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241840,\n \"starts_at\" : 591.86,\n \"ends_at\" : 612.21,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Uh, anything else on that piece?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241847,\n \"starts_at\" : 612.4,\n \"ends_at\" : 623.22,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any, any thoughts on that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241852,\n \"starts_at\" : 709.87,\n \"ends_at\" : 725.77,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241858,\n \"starts_at\" : 768.73,\n \"ends_at\" : 790.72,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Do you know, Rachel, how other customers have done that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241860,\n \"starts_at\" : 847.99,\n \"ends_at\" : 852.39,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"I think it's more— to me, the question is how— where is that information coming from?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241862,\n \"starts_at\" : 856.25,\n \"ends_at\" : 863.21,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"every year, do they have an import of all the students and the academic achievements attached to them?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241867,\n \"starts_at\" : 948.14,\n \"ends_at\" : 965.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"So maybe that's a piece for us just to dig into to understand, like, do they actually need access on the backend, or could it be potentially a frontend piece, Sam, um, in terms of like the built and what they would be able to do there?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241868,\n \"starts_at\" : 966.7,\n \"ends_at\" : 980.25,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"I suppose this is It depends, like Rachel said, like, what, what are they, what information, where is this information coming from, and then what do they need to actually do with it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241871,\n \"starts_at\" : 1006.73,\n \"ends_at\" : 1019.68,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And they do say it's interesting that, cause yeah, you would imagine that it might be like a directory or they would do targeting, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241872,\n \"starts_at\" : 1110.99,\n \"ends_at\" : 1127.43,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Yeah, because I've seen it done with candidates, which is very different, isn't it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241876,\n \"starts_at\" : 1129.56,\n \"ends_at\" : 1145.42,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is there a good way of doing historical?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241877,\n \"starts_at\" : 1175.87,\n \"ends_at\" : 1190.74,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sorry, my cat is causing— Tina?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241880,\n \"starts_at\" : 1191.87,\n \"ends_at\" : 1204.15,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Where do they want— like, do they want to be able to query it for anyone who has ever worked at Chase Bank?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241883,\n \"starts_at\" : 1230.07,\n \"ends_at\" : 1234.75,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And I do also wonder, like, how would you use that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241885,\n \"starts_at\" : 1258.91,\n \"ends_at\" : 1273.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any flags here?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241890,\n \"starts_at\" : 1302.66,\n \"ends_at\" : 1305.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Any thoughts, Sam?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241891,\n \"starts_at\" : 1306.9,\n \"ends_at\" : 1322.15,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Okay, this is repeating the same stuff, right?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241893,\n \"starts_at\" : 1507.05,\n \"ends_at\" : 1524.3,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything else, Rachel?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241895,\n \"starts_at\" : 1611.43,\n \"ends_at\" : 1627.97,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Anything to add?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241898,\n \"starts_at\" : 1716.77,\n \"ends_at\" : 1726.64,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And again, like, what data will be in the system and how would they need to segment that?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241899,\n \"starts_at\" : 1769.63,\n \"ends_at\" : 1778.95,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Could you just go up a little bit, Lina?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241900,\n \"starts_at\" : 1873.76,\n \"ends_at\" : 1877.76,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Would it be nationbuilder or would we do something with Insights?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241901,\n \"starts_at\" : 1900.72,\n \"ends_at\" : 1909.0,\n \"participant_id\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"text\" : \"Like, are they wanting a proposal with us integrating to some of these systems, or are they taking on integration of systems?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241903,\n \"starts_at\" : 1963.19,\n \"ends_at\" : 1966.46,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Sam, anything on that?\",\n \"is_engaging\" : true,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241904,\n \"starts_at\" : 1993.77,\n \"ends_at\" : 2012.14,\n \"participant_id\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"text\" : \"Or are they saying we want a solution that is integrated with these 6 points?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241905,\n \"starts_at\" : 2012.55,\n \"ends_at\" : 2026.62,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"And also, I suppose with the proposal that we would put forward, there is a question of like, Do they need those even?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241907,\n \"starts_at\" : 2032.35,\n \"ends_at\" : 2048.7,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Is it the ability to do it again or is it they have it?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241909,\n \"starts_at\" : 2059.21,\n \"ends_at\" : 2076.91,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"What do they actually need, or have they just dumped everything they could think of there?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n },\n {\n \"id\" : 130241910,\n \"starts_at\" : 2077.15,\n \"ends_at\" : 2082.53,\n \"participant_id\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"text\" : \"Have we got 5 quick minutes just to look at who's doing what on the response answers, or should we do that async?\",\n \"is_engaging\" : false,\n \"is_insightful\" : false\n }\n ],\n \"crm_fields\" : [ ],\n \"participants\" : [\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 29089,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"name\" : \"Line Kristensen\",\n \"role\" : \"organizer\",\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:14:06\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36e8cdfb-f247-4a07-acef-17c515a76e18\",\n \"user\" : {\n \"name\" : \"Line Kristensen\",\n \"email\" : \"line.kristensen@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"country_code\" : \"GB\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"Europe/London\",\n \"language\" : \"en_GB\",\n \"conference_slug\" : \"linekristensen\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"24d98d00-9f6a-45b2-ad73-50a0c41869cf\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png\",\n \"job\" : {\n \"id\" : 7431,\n \"team_id\" : 575,\n \"name\" : \"Account Executive\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"780163c0-8a7c-4d2b-b550-fb2a788e1c33\"\n },\n \"group\" : {\n \"name\" : \"Sales Team\",\n \"slug\" : \"sales-team\",\n \"team_id\" : 575,\n \"user_id\" : 11645,\n \"scope\" : 0,\n \"playbook_id\" : 3630,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-26 17:01:45\",\n \"updated_at\" : \"2022-08-10 21:47:10\",\n \"deleted_at\" : null,\n \"id_string\" : \"617ac564-3e20-40c4-9953-6cf0b03ce20e\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 0,\n \"participant_id\" : 243166656\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : 15802251,\n \"lead_id\" : null,\n \"phone_number\" : \"+3517790887170\",\n \"ext\" : null,\n \"email\" : \"sam@brandresponse.cc\",\n \"name\" : \"Sam Lockwood\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : null,\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-07 10:04:24\",\n \"updated_at\" : \"2026-05-07 10:04:25\",\n \"id_string\" : \"3cfaba07-6a03-4300-ae25-bb052a909f62\",\n \"user\" : null,\n \"contact\" : {\n \"team_id\" : 575,\n \"crm_configuration_id\" : 900,\n \"crm_provider_id\" : \"25706790048\",\n \"user_id\" : 11645,\n \"owner_id\" : \"1340194655\",\n \"name\" : \"Sam Lockwood\",\n \"title\" : \"Director\",\n \"email\" : \"sam@brandresponse.cc\",\n \"phone\" : \"+3517790887170\",\n \"ext\" : null,\n \"mobile_phone\" : null,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\",\n \"country_code\" : \"PT\",\n \"deleted_at\" : null,\n \"created_at\" : \"2024-06-05 15:26:16\",\n \"remotely_created_at\" : \"2024-05-30 12:25:28\",\n \"updated_at\" : \"2026-02-18 01:07:11\",\n \"id_string\" : \"52c2c4ea-2e73-4af0-86ec-b645f8ecd187\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png\"\n },\n \"speaker_id\" : 1,\n \"participant_id\" : 243166657\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : 11857,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"name\" : \"Rachel Franks\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:30\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-11 15:21:06\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"36bee618-8cf8-4a6e-b6d4-68c8adf620f3\",\n \"user\" : {\n \"name\" : \"Rachel Franks\",\n \"email\" : \"rachel.franks@nationbuilder.com\",\n \"status\" : 1,\n \"photo_path\" : \"/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"country_code\" : \"US\",\n \"phone\" : null,\n \"secondary_phone\" : null,\n \"timezone\" : \"America/New_York\",\n \"language\" : \"en_US\",\n \"conference_slug\" : \"rachelfranks\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 1,\n \"id_string\" : \"ef9d843a-2bbb-44bb-a87b-726b1230290e\",\n \"photo_url\" : \"https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/i7184YFh3gC5Wrn817zbTSxM7iQMq3XAiPy9QncN.png\",\n \"job\" : {\n \"id\" : 7446,\n \"team_id\" : 575,\n \"name\" : \"Other\",\n \"sequence\" : 0,\n \"created_at\" : \"2022-07-21 10:04:12\",\n \"updated_at\" : \"2022-07-21 10:04:12\",\n \"id_string\" : \"c93275c7-6ec1-42b0-9cd2-4674818cd7e6\"\n },\n \"group\" : {\n \"name\" : \"Professional Services\",\n \"slug\" : \"professional-services\",\n \"team_id\" : 575,\n \"user_id\" : 11798,\n \"scope\" : 0,\n \"playbook_id\" : 3649,\n \"conference_record_announce\" : \"delegate\",\n \"conference_invite_template\" : null,\n \"conference_lead_ownership_rule\" : \"calendar\",\n \"conference_account_ownership_rule\" : \"calendar\",\n \"conference_opportunity_ownership_rule\" : \"calendar\",\n \"transcription_model_locale_id\" : null,\n \"default_timezone\" : \"US/Eastern\",\n \"default_language\" : \"en_US\",\n \"country_code\" : \"US\",\n \"required_sidekick\" : 1,\n \"created_at\" : \"2022-07-29 15:44:39\",\n \"updated_at\" : \"2022-08-10 21:47:17\",\n \"deleted_at\" : null,\n \"id_string\" : \"6fea7890-fabf-482d-a37d-74db2e07eecf\"\n },\n \"team\" : {\n \"id\" : 575,\n \"name\" : \"NationBuilder\",\n \"slug\" : \"nationbuilder\",\n \"country_code\" : \"US\",\n \"conference_record_preference\" : 1,\n \"softphone_record_preference\" : 2,\n \"id_string\" : \"d1a554eb-d6df-4981-95f9-4e2ad3cc04ac\"\n }\n },\n \"contact\" : null,\n \"speaker_id\" : 2,\n \"participant_id\" : 243573434\n },\n {\n \"provider_id\" : null,\n \"activity_id\" : 79763436,\n \"user_id\" : null,\n \"contact_id\" : null,\n \"lead_id\" : null,\n \"phone_number\" : null,\n \"ext\" : null,\n \"email\" : null,\n \"name\" : \"Sam (Brand Response)\",\n \"role\" : null,\n \"is_ghost\" : false,\n \"is_muted\" : 0,\n \"enter_time\" : \"2026-05-12 13:15:54\",\n \"exit_time\" : null,\n \"duration\" : \"0.00\",\n \"consent_requested_at\" : null,\n \"invitation_sent_at\" : null,\n \"accepted_recording_at\" : null,\n \"declined_recording_at\" : null,\n \"deleted_at\" : null,\n \"created_at\" : \"2026-05-12 13:51:38\",\n \"updated_at\" : \"2026-05-12 13:51:38\",\n \"id_string\" : \"e5f3e180-64f9-407d-b8a3-32fe3da8e8d3\",\n \"user\" : null,\n \"contact\" : null,\n \"speaker_id\" : 1,\n \"participant_id\" : 243706384\n }\n ]\n }\n }\n ]\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"on_screen":false,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"on_screen":true,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"on_screen":false,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
5773455272741835332
|
-3559557389246262808
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20891-improve-sms-text Project: faVsco.js, menu
JY-20891-improve-sms-text-relays, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Sync Changes
Hide This Notification
Code changed:
Hide
10
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Component\ElasticSearch\Service;
use ChaseConey\LaravelDatadogHelper\Datadog;
use Elastica;
use Elastica\Document;
use Elastica\Query;
use Generator;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\LazyCollection;
use Jiminny\Component\ElasticSearch\Client;
use Jiminny\Component\ElasticSearch\Contract\Searchable;
use Jiminny\Component\ElasticSearch\ModelFiller;
use Jiminny\Models\Activity;
/**
* Class Search
*
* @package Jiminny\Component\ElasticSearch\Service
*/
class Search
{
/**
* @var Client
*/
private $client;
/**
* @var ModelFiller\Elastica
*/
private $modelFiller;
public function __construct(Client $client, ModelFiller\Elastica $modelFiller)
{
$this->client = $client;
$this->modelFiller = $modelFiller;
}
public function updateDocument(Searchable $model): self
{
return $this->updateDocumentCollection($model, new Collection([$model]));
}
public function updateDocumentCollection(
Searchable $model,
Collection $collection,
int $chunkSize = 10,
?callable $callback = null,
): self {
if ($collection->count() === 0) {
return $this;
}
$documentType = $this->client->createIndex($model->getIndex());
$collection
->chunk($chunkSize)
->each(static function (Collection $collection) use ($documentType, $callback): void {
$documents = $collection->map(static function (Searchable $model): Document {
return new Document((string) $model->getId(), $model->getIndexableAttributes());
});
$documentType->addDocuments($documents->all());
if ($callback !== null) {
$callback($collection, $documents);
}
gc_collect_cycles();
});
return $this;
}
private function createSearch(Query $query, Searchable|string $modelOrIndex): Elastica\Search
{
if (request() && request()->has('debug')) {
Log::info('Debug ES query: ', [
'debug' => request()->get('debug'),
'userId' => request()->user()?->id ?? 'anonymous',
'userUuid' => request()->user()?->getIdString() ?? 'anonymous',
'query' => json_encode($query->toArray(), JSON_THROW_ON_ERROR),
'url' => request()->fullUrl(),
]);
}
return $this->client
->createIndex($modelOrIndex instanceof Searchable ? $modelOrIndex->getIndex() : $modelOrIndex)
->createSearch($query);
}
public function scroll(Query $query, Searchable|string $model): Elastica\Scroll
{
return new Elastica\Scroll($this->createSearch($query, $model));
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*
* @return LazyCollection<int, Document>
*/
public function scrollOverDocuments(Query $query, Searchable|string $modelOrIndex): LazyCollection
{
return LazyCollection::make(function () use ($query, $modelOrIndex): Generator {
foreach ($this->scroll($query, $modelOrIndex) as $resultSet) {
foreach ($resultSet->getDocuments() as $document) {
yield $document;
}
}
});
}
/**
* @param Searchable|string $modelOrIndex usage of model is deprecated
*/
public function search(Query $query, Searchable|string $modelOrIndex, ?string $queryName = null): Elastica\ResultSet
{
Datadog::increment('jiminny.es.search', 1, ['query' => $queryName ?? '']);
$before = microtime(true);
$result = $this->createSearch($query, $modelOrIndex)->search();
$after = microtime(true);
Datadog::timing('jiminny.es.search.time', (int) (($after - $before) * 1000), 1, ['query' => $queryName ?? '']);
return $result;
}
/**
* @TODO use LazyCollection
*
* @return Collection<int, Activity>
*/
public function getQueryDocuments(Query $query, Model&Searchable $model, ?string $queryName = null): Collection
{
return $this
->hydrateCollection($this->search($query, $model, $queryName)->getDocuments(), $model)
->collect();
}
/**
* @return array{totalHits: int, results: Collection<int, Activity>}
*/
public function getQueryDocumentsPaginated(Query $query, Model&Searchable $model, ?string $queryName = null): array
{
$search = $this->search($query, $model, $queryName);
/**
* @TODO Use value-object instead.
*/
return [
'totalHits' => $search->getTotalHits(),
'results' => $this
->hydrateCollection($search->getDocuments(), $model)
->collect(),
];
}
private function hydrateCollection(array $collection, Model&Searchable $model): LazyCollection
{
return LazyCollection::make($collection)
->map(function (Document $document) use ($model): Searchable {
return $this->hydrateModel($document, $model);
});
}
private function hydrateModel(Document $document, Model&Searchable $model): Model&Searchable
{
$attributes = $document->getData();
$attributes['id'] = $document->getId();
/** @var Searchable&Model */
return $this->modelFiller->newFromBuilderRecursive($model, $attributes);
}
}
Sync Changes
Hide This Notification
Code changed:
Hide
115
78
Previous Highlighted Error
Next Highlighted Error
{
"took" : 896,
"timed_out" : false,
"_shards" : {
"total" : 14,
"successful" : 14,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "activities",
"_type" : "_doc",
"_id" : "79763436",
"_score" : 1.0,
"_source" : {
"type" : "conference",
"language" : "en_GB",
"duration" : 2245,
"status" : "failed",
"on_air" : 5,
"calendar_event_id" : 25540483,
"log_reminder_sent_at" : null,
"is_internal" : false,
"is_private" : false,
"is_instant_invite" : false,
"average_score" : null,
"title" : "SamLockwood,Brand Response<> Line, NationBuilder",
"description" : """Line Kristensen is inviting you to a scheduled Zoom meeting.
Topic: SamLockwood,Brand Response<> Line, NationBuilder
Time: May 12, 2026 02:15 PM London
Join Zoom Meeting
https://nationbuilder.zoom.us/j/82092948046
Meeting chat link
https://nationbuilder.zoom.us/launch/jc/82092948046
Meeting ID: 820 9294 8046
---
One tap mobile
[PHONE],,82092948046# US
[PHONE],,82092948046# US (Chicago)
---
Join by SIP
• [EMAIL]
Join instructions
https://nationbuilder.zoom.us/meetings/82092948046/invitations?signature=xmCxNzDVkiZryz7wuyyGKHnq-FG6L_UBD0E8fiUQWO4
<br><b>Need to make changes?</b><br><ul><li>Reschedule: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?rescheduleId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li><li>Cancel: <a href="https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1">https://app.hubspot.com/meetings/line-kristensen/partners?cancelId=88299bbc3bfd6eb4e70b68f3902eb55b&ms=1</a></li></ul>""",
"scheduled_start_time" : "2026-05-12 13:15:00",
"scheduled_end_time" : "2026-05-12 13:51:33",
"actual_start_time" : "2026-05-12 13:14:08",
"actual_end_time" : "2026-05-12 13:51:33",
"id_string" : "67cebfc2-ed56-44a2-8c68-7a0286ed8618",
"user" : {
"name" : "Line Kristensen",
"email" : "[EMAIL]",
"status" : 1,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"country_code" : "GB",
"phone" : null,
"secondary_phone" : null,
"timezone" : "Europe/London",
"language" : "en_GB",
"conference_slug" : "linekristensen",
"conference_record_preference" : 1,
"softphone_record_preference" : 1,
"id_string" : "24d98d00-9f6a-45b2-ad73-50a0c41869cf",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/24d98d00-9f6a-45b2-ad73-50a0c41869cf.png",
"team" : {
"id" : 575,
"name" : "NationBuilder",
"slug" : "nationbuilder",
"country_code" : "US",
"conference_record_preference" : 1,
"softphone_record_preference" : 2,
"id_string" : "d1a554eb-d6df-4981-95f9-4e2ad3cc04ac"
},
"job" : {
"id" : 7431,
"team_id" : 575,
"name" : "Account Executive",
"sequence" : 0,
"created_at" : "2022-07-21 10:04:12",
"updated_at" : "2022-07-21 10:04:12",
"id_string" : "780163c0-8a7c-4d2b-b550-fb2a788e1c33"
},
"roles" : [
{
"id" : 5,
"name" : "recorder"
}
],
"group" : {
"name" : "Sales Team",
"slug" : "sales-team",
"team_id" : 575,
"user_id" : 11645,
"scope" : 0,
"playbook_id" : 3630,
"transcription_model_locale_id" : null,
"default_timezone" : "US/Eastern",
"default_language" : "en_US",
"country_code" : "US",
"created_at" : "2022-07-26 17:01:45",
"updated_at" : "2022-08-10 21:47:10",
"deleted_at" : null,
"id_string" : "617ac564-3e20-40c4-9953-6cf0b03ce20e"
}
},
"lead" : null,
"contact" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "25706790048",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Sam Lockwood",
"title" : "Director",
"email" : "[EMAIL]",
"phone" : "[PHONE]",
"ext" : null,
"mobile_phone" : null,
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"country_code" : "PT",
"deleted_at" : null,
"created_at" : "2024-06-05 15:26:16",
"remotely_created_at" : "2024-05-30 12:25:28",
"updated_at" : "2026-02-18 01:07:11",
"id_string" : "52c2c4ea-2e73-4af0-86ec-b645f8ecd187",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/25706790048.png",
"account" : {
"team_id" : 575,
"crm_configuration_id" : 900,
"crm_provider_id" : "36632022860",
"user_id" : 11645,
"owner_id" : "1340194655",
"name" : "Brand Response",
"phone" : null,
"ext" : null,
"industry" : "COMPUTER_SOFTWARE",
"domain" : "brandresponse.cc",
"photo_path" : "/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png",
"country_code" : "US",
"is_internal" : 0,
"deleted_at" : null,
"created_at" : "2025-07-23 03:35:39",
"remotely_created_at" : "2024-05-30 04:17:41",
"updated_at" : "2026-04-20 13:23:58",
"id_string" : "d928d3e8-df0f-40cb-99d8-2759408c3225",
"photo_url" : "https://media.app.jiminny.com/d1a554eb-d6df-4981-95f9-4e2ad3cc04ac/avatars/36632022860.png"
},
"data" : [ ]
},
"opportunity" : null,
"transcription" : {
"id" : 12509037,
"id_string" : "26c06d16-40df-4a00-9551-2ccd03f68efa",
"status" : "consumer ready",
"segment" : [
{
"startsAt" : 97.805,
"endsAt" : 98.278,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Hey, Rachel.",
"en" : "Hey, Rachel."
}
},
{
"startsAt" : 103.517,
"endsAt" : 104.69,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Leena, how are you?",
"en" : "Hey, Leena, how are you?"
}
},
{
"startsAt" : 105.461,
"endsAt" : 108.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I'm all right. I'm sorry for all of the back and forth.",
"en" : "I'm all right. I'm sorry for all of the back and forth."
}
},
{
"startsAt" : 108.512,
"endsAt" : 115.371,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "It's okay. They really, they want to get all the answers but not give us, not give us anything.",
"en" : "It's okay. They really, they want to get all the answers but not give us, not give us anything."
}
},
{
"startsAt" : 115.949,
"endsAt" : 117.186,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah. Hi, Sam.",
"en" : "Yeah. Hi, Sam."
}
},
{
"startsAt" : 117.877,
"endsAt" : 119.355,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Hey, Leena. Hey, Rachel.",
"en" : "Hey, Leena. Hey, Rachel."
}
},
{
"startsAt" : 119.58,
"endsAt" : 121.154,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Hey, Sam. Nice to see you.",
"en" : "Hey, Sam. Nice to see you."
}
},
{
"startsAt" : 121.893,
"endsAt" : 122.294,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "You too.",
"en" : "You too."
}
},
{
"startsAt" : 123.451,
"endsAt" : 129.711,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I didn't know when I set this up whether you two already know each other. Have you met before?",
"en" : "So I didn't know when I set this up whether you two already know each other. Have you met before?"
}
},
{
"startsAt" : 130.24,
"endsAt" : 138.079,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly.",
"en" : "We've been on a few calls together, um, but you know, we've always been on group calls together. I don't know if we've ever chatted directly."
}
},
{
"startsAt" : 139.794,
"endsAt" : 152.987,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent.",
"en" : "Yeah, I think our paths have crossed a few times in different contexts, but, um, yeah, I feel like that with quite a few people at nationbuilder where I'm like, I've been in several calls with you, but I've never spoken directly. So excellent."
}
},
{
"startsAt" : 153.099,
"endsAt" : 160.786,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here.",
"en" : "Well, we'll have the chance to do that now. Um, and thanks both for jumping on. For context, Sam, I thought it'd be really useful for Rachel to be here."
}
},
{
"startsAt" : 160.883,
"endsAt" : 169.42,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start.",
"en" : "She pairs with me on all of the deals, and particularly where, you know, we're looking at sort of complex tenders, even more important that Rachel is part of it from the start."
}
},
{
"startsAt" : 170.566,
"endsAt" : 180.56,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good.",
"en" : "So I thought it would just be really useful to get the three of us together to talk through the, you know, what sort of what's in front of us, what's there, how we might want to handle it as well, if that sounds good."
}
},
{
"startsAt" : 181.765,
"endsAt" : 182.247,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Sounds good.",
"en" : "Sounds good."
}
},
{
"startsAt" : 182.312,
"endsAt" : 182.472,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah.",
"en" : "Yeah."
}
},
{
"startsAt" : 183.115,
"endsAt" : 196.422,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in.",
"en" : "Great. So maybe that's the first thing to name is they have moved a deadline for submissions. We have another week. So hopefully that is good news. To everybody. So the 22nd is when they're expecting the response in."
}
},
{
"startsAt" : 197.996,
"endsAt" : 205.962,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read.",
"en" : "And what I thought might be useful— assume, I'm gonna assume we've all had a, like, an initial look at it, even if it's a skim read."
}
},
{
"startsAt" : 206.026,
"endsAt" : 223.679,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind.",
"en" : "But I thought it might be good to maybe go through the requirements and maybe just talk through how we feel about those as a group, you know, both Sam from, you know, solution building, but also Rachel you know, thinking about the software and where we think we're strong, where there is something we might want to have in mind."
}
},
{
"startsAt" : 224.304,
"endsAt" : 235.697,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off.",
"en" : "And then I thought we could go through the submission document and just agree perhaps who will cover what so that we could then do that async. I'm just gonna turn my cat off."
}
},
{
"startsAt" : 235.761,
"endsAt" : 236.322,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "See you, Nana.",
"en" : "See you, Nana."
}
},
{
"startsAt" : 236.45,
"endsAt" : 260.346,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements.",
"en" : "Sorry, she likes to attack the very expensive washing basket, which is not ideal, but there we are. So should I just share my screen? Is that the easiest way to do it? Cool. So let's make sure I have to— maybe I'll just do the requirements."
}
},
{
"startsAt" : 260.443,
"endsAt" : 271.407,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon.",
"en" : "That's probably easier than the project brief, but worth saying as well. Obviously, Sam, when you and I talked, my main flag was just around servers because obviously we're not going to move our servers anytime soon."
}
},
{
"startsAt" : 272.145,
"endsAt" : 283.968,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat.",
"en" : "But they did come back and clarify that it's not an automatic exclusion. And as long as like you know, we have robust, um, processes and policies in place. I'm just going to give up with the cat."
}
},
{
"startsAt" : 284.017,
"endsAt" : 300.185,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are.",
"en" : "She's just starting and you can't hear her, but she is feeling feisty. Um, but yeah, no, so they came back and they said, uh, um, yeah, that, you know, it shouldn't exclude us from, from putting a proposal forward. Uh, here we are."
}
},
{
"startsAt" : 306.65,
"endsAt" : 326.537,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam.",
"en" : "So the first piece, high-level functionality, and I don't know if you both spotted as well going through it, there is a couple of places where they are contradicting themselves. So that's just like an FYI perhaps. So the first piece— go for it, Sam."
}
},
{
"startsAt" : 327.082,
"endsAt" : 336.292,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—",
"en" : "Yeah, sorry, Lina, I was gonna say, I think I'm not sure. You sent me a summary of this, but I haven't seen the full document yet, so maybe you could share that across as well, just so I can—"
}
},
{
"startsAt" : 336.645,
"endsAt" : 348.412,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do.",
"en" : "Oh, absolutely. Let me add you to the folder. And apologies, Sam, I thought I'd shared everything. If that's the case, I'm just thinking what might be the most useful to do."
}
},
{
"startsAt" : 348.525,
"endsAt" : 358.93,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live.",
"en" : "I mean, we can still go through this, but I'll let you go away and digest as well, and I can share a summary of what we discussed on this call. Appreciate, then you're taking it all in live."
}
},
{
"startsAt" : 359.605,
"endsAt" : 360.488,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "That's good, that's cool.",
"en" : "That's good, that's cool."
}
},
{
"startsAt" : 361.276,
"endsAt" : 384.155,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?",
"en" : "Um, so I think the first thing really is about sort of your traditional CRM piece that I saw in here. I didn't have anything massively on this piece. Um, Rachel? Any thoughts from you on this?"
}
},
{
"startsAt" : 384.894,
"endsAt" : 397.287,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones.",
"en" : "Yeah, the one flag that I'm not 100% sure, you know, what they're referring or, you know, what they're intending here is retention of existing identifiers and ability to create new ones."
}
},
{
"startsAt" : 397.913,
"endsAt" : 411.189,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID.",
"en" : "I don't think they want us to be an identity provider because I think they're using Azure for that. But just like curious exactly what they're looking for there. Hopefully it's something, you know, as simple as nationbuilder ID."
}
},
{
"startsAt" : 412.526,
"endsAt" : 419.036,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag.",
"en" : "And as long as they're using a different identity provider to do single sign-on, I think that's fine. But that was my one flag."
}
},
{
"startsAt" : 422.457,
"endsAt" : 440.161,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore.",
"en" : "We want to inquire about anything else on that. Okay. And actually, I think what we might do is go to the other document as well because they have another one that has quite detailed requirements. Requirements galore."
}
},
{
"startsAt" : 442.361,
"endsAt" : 461.645,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media.",
"en" : "In terms of this next piece, um, so integrated personalized multichannel communication segmentation, campaign tracking, and interaction recording. I think that all looked fine to me. My only flag was on social media."
}
},
{
"startsAt" : 468.461,
"endsAt" : 485.052,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to.",
"en" : "And maybe phone, as long as we're okay. You know, phone can mean a lot of things, but some of these things can be many things. But, you know, we could also submit with CallHub or an integrated phone banking system if we need to."
}
},
{
"startsAt" : 485.917,
"endsAt" : 499.373,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it.",
"en" : "Yeah, yeah, I'd imagine it's probably— it's not uncommon, is it, when you do the phone— like, they'll do the phone banking where, like, current students will phone alumni to ask for money. So I'd imagine that might be it."
}
},
{
"startsAt" : 500.111,
"endsAt" : 509.15,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that.",
"en" : "Um, Sam, I don't know if you have any other phone providers you normally like to work with. We obviously do CallHub. I don't know if you have any thoughts on that."
}
},
{
"startsAt" : 510.547,
"endsAt" : 521.881,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense.",
"en" : "Yeah, I think, yeah, kind of CallHub is the standard one. There's another couple of ones that we've used in various different contexts, but I think anything that really integrates with nationbuilder would make sense."
}
},
{
"startsAt" : 522.667,
"endsAt" : 536.838,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?",
"en" : "My, my other kind of thinking on the social media piece is that's kind of pretty vague cuz like communication tool for social media. I mean, what does that mean? Is that like broadcasting? Is that like sharing?"
}
},
{
"startsAt" : 537.111,
"endsAt" : 547.627,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer.",
"en" : "Like it, it's very unclear like what that requirement actually is. Um, I think events, email, and phone is clearer."
}
},
{
"startsAt" : 548.799,
"endsAt" : 563.185,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that.",
"en" : "And I guess there's post in there as well, which is a bit of a— I mean, you know, like, yeah, it's a bit of a— usually, I mean, most organizations are then exporting and then using a post house, right, to do that."
}
},
{
"startsAt" : 563.282,
"endsAt" : 576.769,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with.",
"en" : "So that's a really good flag, Sam, because I do wonder where, you know, some of the other solutions in the market will have like preferred like, like post houses they do integrate with."
}
},
{
"startsAt" : 577.251,
"endsAt" : 586.419,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool.",
"en" : "So that could be a potential flag as well, because to my knowledge, I don't think we have anything like that. We don't do, Rachel. I mean, it's pretty cool."
}
},
{
"startsAt" : 586.467,
"endsAt" : 591.606,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "We have some that we recommend in the US, but I don't think for UK we have any. No.",
"en" : "We have some that we recommend in the US, but I don't think for UK we have any. No."
}
},
{
"startsAt" : 591.862,
"endsAt" : 612.206,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely.",
"en" : "Okay. Uh, anything else on that piece? Oh, okay. Fundraising. I think, Sam, this is where I particularly like SmartRaise comes into play. Definitely."
}
},
{
"startsAt" : 612.399,
"endsAt" : 623.221,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?",
"en" : "I mean, I saw a number of different things in there around sort of multi-currency, you know, gift aid and so on. Any, any thoughts on that?"
}
},
{
"startsAt" : 625.147,
"endsAt" : 632.107,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I think it— looking at this, I think it all would be covered by our tool.",
"en" : "Yeah, I think it— looking at this, I think it all would be covered by our tool."
}
},
{
"startsAt" : 635.17,
"endsAt" : 649.988,
"participantId" : 243706384,
"speakerId" : 1,
"transcript" : {
"raw" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown.",
"en" : "Yeah, I can't see anything major that would be— I don't know what that bottom one is, alignment with Council of Advanced Advancement and Support to Higher Education fundraising metrics. That's a bit of an unknown."
}
},
{
"startsAt" : 650.902,
"endsAt" : 668.773,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting.",
"en" : "Yeah, I don't know what that is either. I've not come across it. I'm just gonna make a note just to Google it. Work out what that is. And yeah, I think for everything else it's fine. I mean, legacy major, all fine. Gift splitting."
}
},
{
"startsAt" : 668.821,
"endsAt" : 686.258,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine.",
"en" : "I don't know if you know, Sam, but we now do that. We do what we call like soft credits. So I think that's fine too as things come in. Event management. I think that's all fine."
}
},
{
"startsAt" : 686.436,
"endsAt" : 698.675,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one.",
"en" : "I did say, see, they're like Eventbrite and MailerLite integration piece, and my, I think my views as a top line would be that we could try and encourage them just to stick with the all-in-one."
}
},
{
"startsAt" : 702.504,
"endsAt" : 707.223,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "I think would make sense and also would save them quite significant costs.",
"en" : "I think would make sense and also would save them quite significant costs."
}
},
{
"startsAt" : 709.868,
"endsAt" : 725.774,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice.",
"en" : "And if they're really keen on Eventbrite, which I know some organizations are just because there's a bigger audience, I think, Rachel, you can do, you can do Zapier, can't you? Yeah. Um, nice."
}
},
{
"startsAt" : 729.963,
"endsAt" : 748.192,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically.",
"en" : "The one thing I did wonder with this, I don't know if you know, Sam, but we do have a partner that makes it like, I think it's Alex Wilkes actually, who's developed like an add-on for like mass, like rally style events where people can like scan QR codes to like register and it updates automatically."
}
},
{
"startsAt" : 748.61,
"endsAt" : 762.328,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief.",
"en" : "So there are some cool things there that might be relevant to them in terms of that automation piece and how can they make it easier and reduce the manual work, which is one of the priorities elsewhere in the brief."
}
},
{
"startsAt" : 768.73,
"endsAt" : 790.718,
"participantId" : 243166656,
"speakerId" : 0,
"transcript" : {
"raw" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?",
"en" : "Um, so this one I have a question mark on in terms of how they might do education history for each alumni. As well as like achievements. Do you know, Rachel, how other customers have done that?"
}
},
{
"startsAt" : 792.725,
"endsAt" : 805.858,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this.",
"en" : "I don't— like our alumni organizations that are in the US, like I don't think they're— it's very— their setup is very different from like what is they're looking for in this."
}
},
{
"startsAt" : 807.333,
"endsAt" : 822.047,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this.",
"en" : "Like, they're very focused on like chapters and local groups, like organizing. Like, they're not doing fundraising, they're not doing this kind of alumni tracking, and they have an overarching CRM that tracks things like this."
}
},
{
"startsAt" : 822.159,
"endsAt" : 844.409,
"participantId" : 243573434,
"speakerId" : 2,
"transcript" : {
"raw" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could do it via tags, you could do it via custom fields. Pop into my mind. Uh, I mean, even past, if you wanted to.",
"en" : "And like, nationbuilder is more like the event-focused one. I mean, I think there's, you know, you could d...
|
35447
|
NULL
|
NULL
|
NULL
|